summaryrefslogtreecommitdiff
path: root/vcl/source/control
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-06-25 10:07:22 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-06-25 14:19:02 +0100
commit9928fd7fc600efa620ad7c3b78c0b0051a4fa930 (patch)
treeeacdfa435601f0762d2309d2078280eba8fc347c /vcl/source/control
parent022b62296c4166486d38f55acf522c62c82894eb (diff)
remove some annoying XubStrings
Change-Id: I8c34a344285b6929091788c6b7a5529b48943f94
Diffstat (limited to 'vcl/source/control')
-rw-r--r--vcl/source/control/fixed.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/control/fixed.cxx b/vcl/source/control/fixed.cxx
index 06060734f02c..62fae387d47e 100644
--- a/vcl/source/control/fixed.cxx
+++ b/vcl/source/control/fixed.cxx
@@ -231,8 +231,8 @@ void FixedText::ImplDraw( OutputDevice* pDev, sal_uLong nDrawFlags,
{
const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
WinBits nWinStyle = GetStyle();
- XubString aText( GetText() );
- sal_uInt16 nTextStyle = FixedText::ImplGetTextStyle( nWinStyle );
+ rtl::OUString aText( GetText() );
+ sal_uInt16 nTextStyle = FixedText::ImplGetTextStyle( nWinStyle );
Point aPos = rPos;
if ( nWinStyle & WB_EXTRAOFFSET )