[Libreoffice-commits] core.git: vcl/source

Ilya Ponamarev ponamarev at gmail.com
Wed Oct 5 19:57:08 UTC 2016


 vcl/source/control/edit.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 664363eeb6d039fbb82d0afe3dcdecbefeff03da
Author: Ilya Ponamarev <ponamarev at gmail.com>
Date:   Wed Oct 5 02:48:29 2016 +0300

    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 at libreoffice.org>
    Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
    Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>

diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx
index ef7b9c2..06bed08 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();


More information about the Libreoffice-commits mailing list