summaryrefslogtreecommitdiff
path: root/vcl/source/control
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/control')
-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 06bed087a93b..a090d9f6bbac 100644
--- a/vcl/source/control/edit.cxx
+++ b/vcl/source/control/edit.cxx
@@ -460,7 +460,7 @@ OUString Edit::ImplGetText() const
if ( mcEchoChar )
cEchoChar = mcEchoChar;
else
- cEchoChar = L'\u2022';
+ cEchoChar = sal_Unicode(0x2022);
OUStringBuffer aText;
comphelper::string::padToLength(aText, maText.getLength(), cEchoChar);
return aText.makeStringAndClear();