diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 17:55:27 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 18:26:56 +0200 |
commit | a5993e41410d278233298dcccd34ece04872ee7d (patch) | |
tree | abcc46eb3eaefde6b82d8533f74292b758e411e0 /sc/source/ui/app | |
parent | afacb9850bde58918ba6a5305320e90124454154 (diff) |
loplugin:salunicodeliteral: sc
Change-Id: I7f63388d3c0214be8f69095fe5ec0030df59a416
Diffstat (limited to 'sc/source/ui/app')
-rw-r--r-- | sc/source/ui/app/inputhdl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx index bcfcef3f2126..e914894145e3 100644 --- a/sc/source/ui/app/inputhdl.cxx +++ b/sc/source/ui/app/inputhdl.cxx @@ -1006,7 +1006,7 @@ void ScInputHandler::ShowArgumentsTip( OUString& rSelText ) { OUStringBuffer aBuf; aBuf.append(aNew.copy(0, nStartPosition)); - aBuf.append(static_cast<sal_Unicode>(0x25BA)); + aBuf.append(u'\x25BA'); aBuf.append(aNew.copy(nStartPosition)); nArgs = ppFDesc->getParameterCount(); sal_Int16 nVarArgsSet = 0; |