From 8729a061e4138420ec8a33a5ab5f4378eec2097b Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Mon, 21 Dec 2009 16:23:41 +0000
Subject: [PATCH] Fix for issue 4413 (setup should use scroll panes in its panels)
---
opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java | 12 +++++-------
1 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java b/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java
index 577dc9f..e76de30 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Copyright 2006-2008 Sun Microsystems, Inc.
+ * Copyright 2006-2009 Sun Microsystems, Inc.
*/
package org.opends.quicksetup.ui;
@@ -239,16 +239,14 @@
}
/**
- * This method sets up an icon on the bottom left side of the dialog.
- * Generally this method is called with an animated gif that is passed to
- * display progress.
- * @param iconType the icon type to be set.
+ * This method displays a working progress icon in the panel.
+ * @param visible whether the icon must be displayed or not.
*/
- public void setIcon(UIFactory.IconType iconType)
+ public void setCheckingVisible(boolean visible)
{
for (WizardStep s : hmPanels.keySet())
{
- getPanel(s).setIcon(iconType);
+ getPanel(s).setCheckingVisible(visible);
}
}
--
Gitblit v1.10.0