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/quicksetup/org/opends/quicksetup/SplashScreen.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/SplashScreen.java b/opends/src/quicksetup/org/opends/quicksetup/SplashScreen.java
index 35b8260..ac0eaf8 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/SplashScreen.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/SplashScreen.java
@@ -38,7 +38,7 @@
import javax.swing.SwingUtilities;
import org.opends.quicksetup.i18n.ResourceProvider;
-import org.opends.quicksetup.util.Utils;
+import org.opends.quicksetup.ui.Utilities;
/**
* This is the class that displays a splash screen and in the background it will
@@ -112,7 +112,7 @@
int height = image.getHeight(this);
setPreferredSize(new Dimension(width, height));
setSize(width, height);
- Utils.centerOnScreen(this);
+ Utilities.centerOnScreen(this);
} catch (Exception ex)
{
--
Gitblit v1.10.0