summaryrefslogtreecommitdiff
path: root/vcl/source/control/edit.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-28 17:53:33 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-28 18:26:54 +0200
commitef2c0e73630d3c74f6fc3eda8416488356ff1b7d (patch)
treefa2e682ec371c6d985ed8317f9bcd35dd577307b /vcl/source/control/edit.cxx
parent229b3a3e0a74c8fa3a1629fc1dbf858dcf2a9c50 (diff)
loplugin:salunicodeliteral: vcl
Change-Id: I4a982da10ad76f8ae05355cec9629b906c95afdb
Diffstat (limited to 'vcl/source/control/edit.cxx')
-rw-r--r--vcl/source/control/edit.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx
index 0a778b86148f..393d12740cea 100644
--- a/vcl/source/control/edit.cxx
+++ b/vcl/source/control/edit.cxx
@@ -441,7 +441,7 @@ OUString Edit::ImplGetText() const
if ( mcEchoChar )
cEchoChar = mcEchoChar;
else
- cEchoChar = sal_Unicode(0x2022);
+ cEchoChar = u'\x2022';
OUStringBuffer aText;
comphelper::string::padToLength(aText, maText.getLength(), cEchoChar);
return aText.makeStringAndClear();