summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-10-21 09:45:16 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-10-21 10:50:11 +0200
commit06845c14a17146b0ec50dd3704b6af9ee13927bc (patch)
tree60a8fee25bf9d18c9672b6432f15adc17855d879 /starmath
parenta00f7fe7c2f5fbbf9bc007fc0d59eed83e317a83 (diff)
This should have become a UTF-16 string literal
...in ac2c1fb821b45f2382a5104b4d98dc08061ae938 "Replace some uses of OUStringChar with string literals". Thanks to Mike Kaganski for spotting the error! Change-Id: I2651b00594a0d049f2f5f91c6167a4b1acbf471f Reviewed-on: https://gerrit.libreoffice.org/81208 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/mathtype.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/mathtype.cxx b/starmath/source/mathtype.cxx
index 7fc0daffca63..cd33f289dda7 100644
--- a/starmath/source/mathtype.cxx
+++ b/starmath/source/mathtype.cxx
@@ -316,7 +316,7 @@ bool MathType::LookupChar(sal_Unicode nChar,OUStringBuffer &rRet,sal_uInt8 nVers
rRet.append(" func ").append(OUStringChar(nChar)).append(" ");
break;
case 0x220d: // owns
- rRet.append(" func \u220b ");
+ rRet.append(u" func \u220b ");
break;
case 0x220f:
pC = " prod ";