From f6bff1e8c31ae6ebfabfdb478771216b9773a3c4 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 24 May 2007 00:37:30 +0000
Subject: [PATCH] This commit addresses issue 1599 as well as introduces some other changes suggested by Brian after reviewing the SWAED guidelines:

---
 opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java b/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java
index 189cdaa..3f0b88e 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java
@@ -62,10 +62,12 @@
   /**
    * The constructor of this class.
    * @param app Application used to create panels for populating the layout
+   * @param qs QuickSetup acting as controller
    */
-  public CurrentStepPanel(GuiApplication app)
+  public CurrentStepPanel(GuiApplication app, QuickSetup qs)
   {
     super(app);
+    setQuickSetup(qs);
     createLayout(app);
   }
 
@@ -125,6 +127,7 @@
       for (WizardStep step : steps) {
         QuickSetupStepPanel panel = app.createWizardStepPanel(step);
         if (panel != null) {
+          panel.setQuickSetup(getQuickSetup());
           panel.initialize();
           hmPanels.put(step, panel);
         }

--
Gitblit v1.10.0