diff options
author | Mark Spruiell <mes@zeroc.com> | 2011-05-02 11:06:54 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2011-05-02 11:06:54 -0700 |
commit | a06d0fd707d2410af3a89b117f605bad32e0798b (patch) | |
tree | 9794a074e8b159e7de23e19318cf25fd53d911c6 /java/src/IceGridGUI/SimpleInternalFrame.java | |
parent | minor fix for compilation error with JDK 1.5 in ObjectPrxHelperBase (diff) | |
download | ice-a06d0fd707d2410af3a89b117f605bad32e0798b.tar.bz2 ice-a06d0fd707d2410af3a89b117f605bad32e0798b.tar.xz ice-a06d0fd707d2410af3a89b117f605bad32e0798b.zip |
using jgoodies common lib
Diffstat (limited to 'java/src/IceGridGUI/SimpleInternalFrame.java')
-rw-r--r-- | java/src/IceGridGUI/SimpleInternalFrame.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceGridGUI/SimpleInternalFrame.java b/java/src/IceGridGUI/SimpleInternalFrame.java index ee0331eadaf..8f3b017ac55 100644 --- a/java/src/IceGridGUI/SimpleInternalFrame.java +++ b/java/src/IceGridGUI/SimpleInternalFrame.java @@ -35,7 +35,7 @@ import java.awt.*; import javax.swing.*; import javax.swing.border.AbstractBorder; -import com.jgoodies.looks.LookUtils; +import com.jgoodies.common.base.SystemUtils; /** * A <code>JPanel</code> subclass that has a drop shadow border and @@ -373,7 +373,7 @@ public class SimpleInternalFrame extends JPanel { UIManager.getColor("SimpleInternalFrame.activeTitleBackground"); if (c != null) return c; - if (LookUtils.IS_LAF_WINDOWS_XP_ENABLED) + if (SystemUtils.IS_LAF_WINDOWS_XP_ENABLED) c = UIManager.getColor("InternalFrame.activeTitleGradient"); return c != null ? c |