You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2007/04/10 19:27:45 UTC

svn commit: r527213 - /directory/ldapstudio/trunk/ldapstudio-apacheds-configuration/src/main/java/org/apache/directory/ldapstudio/apacheds/configuration/editor/GeneralPage.java

Author: pamarcelot
Date: Tue Apr 10 10:27:45 2007
New Revision: 527213

URL: http://svn.apache.org/viewvc?view=rev&rev=527213
Log:
Change Character identifier to unicode code for better cross platform handling.

Modified:
    directory/ldapstudio/trunk/ldapstudio-apacheds-configuration/src/main/java/org/apache/directory/ldapstudio/apacheds/configuration/editor/GeneralPage.java

Modified: directory/ldapstudio/trunk/ldapstudio-apacheds-configuration/src/main/java/org/apache/directory/ldapstudio/apacheds/configuration/editor/GeneralPage.java
URL: http://svn.apache.org/viewvc/directory/ldapstudio/trunk/ldapstudio-apacheds-configuration/src/main/java/org/apache/directory/ldapstudio/apacheds/configuration/editor/GeneralPage.java?view=diff&rev=527213&r1=527212&r2=527213
==============================================================================
--- directory/ldapstudio/trunk/ldapstudio-apacheds-configuration/src/main/java/org/apache/directory/ldapstudio/apacheds/configuration/editor/GeneralPage.java (original)
+++ directory/ldapstudio/trunk/ldapstudio-apacheds-configuration/src/main/java/org/apache/directory/ldapstudio/apacheds/configuration/editor/GeneralPage.java Tue Apr 10 10:27:45 2007
@@ -158,7 +158,7 @@
         toolkit.createLabel( client, "Password:" );
         passwordText = toolkit.createText( client, "secret" );
         passwordText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
-        passwordText.setEchoChar( '●' );
+        passwordText.setEchoChar( '\u2022' );
 
         // Show Password
         toolkit.createLabel( client, "" );
@@ -175,7 +175,7 @@
                 }
                 else
                 {
-                    passwordText.setEchoChar( '●' );
+                    passwordText.setEchoChar( '\u2022' );
                 }
             }
         } );