From ba0c82bc1cb8926ca329a4eae78263ee8bbe1094 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 12 Jul 2007 15:47:29 +0000
Subject: [PATCH] moved UI specific utilties to UI specific utility class

---
 opends/src/statuspanel/org/opends/statuspanel/ui/LoginDialog.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/opends/src/statuspanel/org/opends/statuspanel/ui/LoginDialog.java b/opends/src/statuspanel/org/opends/statuspanel/ui/LoginDialog.java
index fe51dc5..4388dd8 100644
--- a/opends/src/statuspanel/org/opends/statuspanel/ui/LoginDialog.java
+++ b/opends/src/statuspanel/org/opends/statuspanel/ui/LoginDialog.java
@@ -51,6 +51,7 @@
 import org.opends.quicksetup.Installation;
 import org.opends.quicksetup.event.MinimumSizeComponentListener;
 import org.opends.quicksetup.ui.UIFactory;
+import org.opends.quicksetup.ui.Utilities;
 import org.opends.quicksetup.util.BackgroundTask;
 import org.opends.quicksetup.util.Utils;
 
@@ -510,7 +511,7 @@
    */
   private void displayError(String msg, String title)
   {
-    Utils.displayError(parent, msg, title);
+    Utilities.displayError(parent, msg, title);
     toFront();
 
   }
@@ -525,7 +526,7 @@
    */
   private void displayInformationMessage(String msg, String title)
   {
-    Utils.displayInformationMessage(parent, msg, title);
+    Utilities.displayInformationMessage(parent, msg, title);
     toFront();
   }
 

--
Gitblit v1.10.0