summaryrefslogtreecommitdiff
path: root/starmath/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-28 17:55:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-28 18:26:56 +0200
commit740cf511036cdf881a521a79218d3dcc29422db3 (patch)
tree9eaa8ec35c47e144dc5dac59ef438bd46a0100e6 /starmath/inc
parentc22ecc18674a8f9f41afa9f6b1364989b18147d7 (diff)
loplugin:salunicodeliteral: starmath
Change-Id: Ic02e71ccb2d5fe2e3505853c6e164f17e26361b2
Diffstat (limited to 'starmath/inc')
-rw-r--r--starmath/inc/node.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index dd0a4c663216..4f199ad332a9 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -482,7 +482,7 @@ protected:
: SmSpecialNode(eNodeType, rNodeToken, FNT_MATH)
{
sal_Unicode cChar = GetToken().cMathChar;
- if (sal_Unicode('\0') != cChar)
+ if (u'\0' != cChar)
SetText(OUString(cChar));
}