summaryrefslogtreecommitdiff
path: root/vcl/generic/print
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-26 13:54:33 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-26 13:55:35 +0200
commit786447f12ddedce95217fffeedb5d6296ec388d4 (patch)
treeba6b758847bc8c91dd6736e65e5a0589d97c42be /vcl/generic/print
parent7f8500191f24571d70fe6a8b8273102d65fd86e1 (diff)
loplugin:stringconstant: handle OUString+=OUString(literal)
Change-Id: I6c82e5071038990489e85ac27758867205ba476a
Diffstat (limited to 'vcl/generic/print')
-rw-r--r--vcl/generic/print/genpspgraphics.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/generic/print/genpspgraphics.cxx b/vcl/generic/print/genpspgraphics.cxx
index dfaca3dc3546..5b5971f26d3a 100644
--- a/vcl/generic/print/genpspgraphics.cxx
+++ b/vcl/generic/print/genpspgraphics.cxx
@@ -1138,7 +1138,7 @@ ImplDevFontAttributes GenPspGraphics::Info2DevFontAttributes( const psp::FastPri
for(; it != rInfo.m_aAliases.end(); ++it )
{
if( bHasMapNames )
- aDFA.maMapNames += OUString(';');
+ aDFA.maMapNames += ";";
aDFA.maMapNames += *it;
bHasMapNames = true;
}