diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 17:55:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 18:26:56 +0200 |
commit | 740cf511036cdf881a521a79218d3dcc29422db3 (patch) | |
tree | 9eaa8ec35c47e144dc5dac59ef438bd46a0100e6 /starmath/inc/node.hxx | |
parent | c22ecc18674a8f9f41afa9f6b1364989b18147d7 (diff) |
loplugin:salunicodeliteral: starmath
Change-Id: Ic02e71ccb2d5fe2e3505853c6e164f17e26361b2
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r-- | starmath/inc/node.hxx | 2 |
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)); } |