summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}