summaryrefslogtreecommitdiff
path: root/vcl/generic
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-07 09:05:58 +0200
committerNoel Grandin <noel@peralex.com>2013-08-12 11:56:45 +0200
commit869823461007c8711181470c11ca713dbbd82211 (patch)
treec8ee768a1acb91330ecb997a3451bc2efea18e75 /vcl/generic
parentc7b5b5a85d1647709e2a85f33cfccfd4ae35745f (diff)
convert vcl/inc/outfont.hxx from String to OUString
Change-Id: I6b9b5f0cd51412ad14f1a07f2ad3a03bd17bb5d3
Diffstat (limited to 'vcl/generic')
-rw-r--r--vcl/generic/print/genpspgraphics.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/generic/print/genpspgraphics.cxx b/vcl/generic/print/genpspgraphics.cxx
index a62b2712d0ca..c0e24e50896a 100644
--- a/vcl/generic/print/genpspgraphics.cxx
+++ b/vcl/generic/print/genpspgraphics.cxx
@@ -1185,9 +1185,9 @@ ImplDevFontAttributes GenPspGraphics::Info2DevFontAttributes( const psp::FastPri
for(; it != rInfo.m_aAliases.end(); ++it )
{
if( bHasMapNames )
- aDFA.maMapNames.Append( ';' );
- aDFA.maMapNames.Append( (*it).getStr() );
- bHasMapNames = true;
+ aDFA.maMapNames += OUString(';');
+ aDFA.maMapNames += *it;
+ bHasMapNames = true;
}
#if OSL_DEBUG_LEVEL > 2