mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

ludovicp
31.16.2010 bb6e844a9964c9e36c12c653dc41ac162d1e1a58
opendj-sdk/opends/src/guitools/org/opends/guitools/uninstaller/ui/LoginDialog.java
@@ -96,7 +96,7 @@
  private JButton cancelButton;
  private JButton okButton;
  private boolean isCancelled = true;
  private boolean isCanceled = true;
  private ApplicationTrustManager trustManager;
  private int timeout;
@@ -144,9 +144,9 @@
   * @return <CODE>true</CODE> if the user clicked on cancel and
   * <CODE>false</CODE> otherwise.
   */
  public boolean isCancelled()
  public boolean isCanceled()
  {
    return isCancelled;
    return isCanceled;
  }
  /**
@@ -372,7 +372,7 @@
   */
  private void cancelClicked()
  {
    isCancelled = true;
    isCanceled = true;
    dispose();
  }
@@ -588,7 +588,7 @@
          UIFactory.setTextStyle(lPwd,
              UIFactory.TextStyle.PRIMARY_FIELD_VALID);
          isCancelled = false;
          isCanceled = false;
          cancelButton.setEnabled(true);
          okButton.setEnabled(true);
          dispose();