diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/edit.cxx | 2 |
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(); |