summaryrefslogtreecommitdiff
path: root/starmath/source/ooxmlimport.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-08-30 15:29:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-08-30 15:29:20 +0200
commitf5a99c3748b9221ae58e38f85d549deeef425abb (patch)
tree4b96411d130e75a7494e2bba62ed06812b98f6fb /starmath/source/ooxmlimport.cxx
parenta86df4bbe0e4f3f3d20f3e33da77911019ad6350 (diff)
loplugin:stringconstant: adapt to improved OUStringLiteral1 (starmath)
Change-Id: Ic0a3a2ae6c0e2601cb415cba971620a71ded02a5
Diffstat (limited to 'starmath/source/ooxmlimport.cxx')
-rw-r--r--starmath/source/ooxmlimport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx
index 577535f1fca9..da29c93ccf9b 100644
--- a/starmath/source/ooxmlimport.cxx
+++ b/starmath/source/ooxmlimport.cxx
@@ -462,9 +462,9 @@ OUString SmOoxmlImport::handleGroupChr()
if( pos == bot && chr == sal_Unicode( 0x23df ))
return "{" + e + "} underbrace { }";
if( pos == top )
- return "{" + e + "} csup {" + OUString( chr ) + "}";
+ return "{" + e + "} csup {" + OUStringLiteral1( chr ) + "}";
else
- return "{" + e + "} csub {" + OUString( chr ) + "}";
+ return "{" + e + "} csub {" + OUStringLiteral1( chr ) + "}";
}
OUString SmOoxmlImport::handleM()