summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-08-30 15:28:22 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-08-30 15:28:22 +0200
commitbbecf9313404d0741ff1edd9fe85e653f0ed48a1 (patch)
treeb11b2696a50299569f3187c147a0d82cb5d4d48f /oox/source
parent82b27577d20025bc8e9b68bfe365a860992be0cb (diff)
loplugin:stringconstant: adapt to improved OUStringLiteral1 (oox)
Change-Id: I1a3190f136b69702615cdf796ff45abfd89155dc
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/helper/textinputstream.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/helper/textinputstream.cxx b/oox/source/helper/textinputstream.cxx
index 9aa5449ee4ae..1c4f4c13175f 100644
--- a/oox/source/helper/textinputstream.cxx
+++ b/oox/source/helper/textinputstream.cxx
@@ -202,7 +202,7 @@ OUString TextInputStream::createFinalString( const OUString& rString )
if( mcPendingChar == 0 )
return rString;
- OUString aString = OUString( mcPendingChar ) + rString;
+ OUString aString = OUStringLiteral1( mcPendingChar ) + rString;
mcPendingChar = 0;
return aString;
}