View | Details | Raw Unified | Return to issue 33350
Collapse All | Expand All

(-)source.orig/vcl/canvasbase.cxx (-2 / +2 lines)
Lines 397-403 Link Here
397
        
397
        
398
            const ::Point aOutpos( setupTextOutput( viewState, renderState, xFont, rImplRef ) );
398
            const ::Point aOutpos( setupTextOutput( viewState, renderState, xFont, rImplRef ) );
399
        
399
        
400
            ::boost::scoped_array< long > aOffsets(new long[modifiableOffsets.getLength()]);
400
            ::boost::scoped_array< sal_Int32 > aOffsets(new sal_Int32[modifiableOffsets.getLength()]);
401
            setupTextOffsets( aOffsets.get(), offsets, viewState, renderState );
401
            setupTextOffsets( aOffsets.get(), offsets, viewState, renderState );
402
        
402
        
403
            // TODO: What about the offset scalings?
403
            // TODO: What about the offset scalings?
Lines 641-647 Link Here
641
        };
641
        };
642
    }
642
    }
643
643
644
    void CanvasBase::setupTextOffsets( long*							outputOffsets,
644
    void CanvasBase::setupTextOffsets( sal_Int32*							outputOffsets,
645
                                       const uno::Sequence< double >& 	inputOffsets,
645
                                       const uno::Sequence< double >& 	inputOffsets,
646
                                       const rendering::ViewState& 		viewState, 
646
                                       const rendering::ViewState& 		viewState, 
647
                                       const rendering::RenderState& 	renderState		) const
647
                                       const rendering::RenderState& 	renderState		) const
(-)source.orig/vcl/canvasbase.hxx (-1 / +1 lines)
Lines 226-232 Link Here
226
                                 const OutDevProvider::ImplRef&																	rOutDevProvider );
226
                                 const OutDevProvider::ImplRef&																	rOutDevProvider );
227
227
228
228
229
        void setupTextOffsets( long*													outputOffsets,
229
        void setupTextOffsets( sal_Int32*													outputOffsets,
230
                               const ::com::sun::star::uno::Sequence< double >& 		inputOffsets,
230
                               const ::com::sun::star::uno::Sequence< double >& 		inputOffsets,
231
                               const ::drafts::com::sun::star::rendering::ViewState& 	viewState, 
231
                               const ::drafts::com::sun::star::rendering::ViewState& 	viewState, 
232
                               const ::drafts::com::sun::star::rendering::RenderState& 	renderState		) const;
232
                               const ::drafts::com::sun::star::rendering::RenderState& 	renderState		) const;

Return to issue 33350