summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Ponamarev <ponamarev@gmail.com>2016-10-05 02:48:29 +0300
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2016-10-05 19:53:53 +0000
commit664363eeb6d039fbb82d0afe3dcdecbefeff03da (patch)
tree21dee4f6a5932bf91ecd82a15e833ea42bf3087f
parent2e595954230b3a9ef555b2671699902c68532bdf (diff)
tdf#102922: Password fields should use u2022 as masking character instead of *
Change-Id: If4f8077de953a0756967d180b8e463eb5fd7dcec Reviewed-on: https://gerrit.libreoffice.org/29532 Tested-by: Jenkins <ci@libreoffice.org> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
-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 ef7b9c2ee9d1..06bed087a93b 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 = '*';
+ cEchoChar = L'\u2022';
OUStringBuffer aText;
comphelper::string::padToLength(aText, maText.getLength(), cEchoChar);
return aText.makeStringAndClear();