diff options
author | Noel Grandin <noel@peralex.com> | 2013-07-25 11:32:39 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-07-29 14:15:42 +0200 |
commit | 0c7579d5de63f569773daf894bcc0ab173223f2a (patch) | |
tree | ed40e40aaa066df263caf1f8397cf9f34926d460 /vcl | |
parent | eb96a5296a76d25bc751177a5e785178f2497adb (diff) |
convert OutputDevice::DrawTextArray from XubString to OUString
Change-Id: Ie16504ea004e39eda246a7ed170504a04a0764bb
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/outdev3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx index 401b25ec7c84..55910d12f272 100644 --- a/vcl/source/gdi/outdev3.cxx +++ b/vcl/source/gdi/outdev3.cxx @@ -5478,7 +5478,7 @@ float OutputDevice::approximate_char_width() const return GetTextWidth("aemnnxEM") / 8.0; } -void OutputDevice::DrawTextArray( const Point& rStartPt, const String& rStr, +void OutputDevice::DrawTextArray( const Point& rStartPt, const OUString& rStr, const sal_Int32* pDXAry, xub_StrLen nIndex, xub_StrLen nLen ) { @@ -5620,7 +5620,7 @@ bool OutputDevice::GetCaretPositions( const OUString& rStr, sal_Int32* pCaretXAr } void OutputDevice::DrawStretchText( const Point& rStartPt, sal_uLong nWidth, - const String& rStr, + const OUString& rStr, xub_StrLen nIndex, xub_StrLen nLen ) { DBG_CHKTHIS( OutputDevice, ImplDbgCheckOutputDevice ); |