diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-12-11 18:14:22 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-12-11 18:14:22 +0100 |
commit | d123cca9cdeb145735047dfbc7c09e2e4d7de704 (patch) | |
tree | 45afeed01ac22a04bb71c50d60e98c91eca8c69e /java/src/IceGridGUI/LiveDeployment/Server.java | |
parent | http://bugzilla/bugzilla/show_bug.cgi?id=4461 - SL 32 & 64 bit optional builds. (diff) | |
download | ice-d123cca9cdeb145735047dfbc7c09e2e4d7de704.tar.bz2 ice-d123cca9cdeb145735047dfbc7c09e2e4d7de704.tar.xz ice-d123cca9cdeb145735047dfbc7c09e2e4d7de704.zip |
Fixed bug 3470 - IceGridGUI application filtering
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/Server.java')
-rw-r--r-- | java/src/IceGridGUI/LiveDeployment/Server.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/Server.java b/java/src/IceGridGUI/LiveDeployment/Server.java index 516680c8725..b2be22b0401 100644 --- a/java/src/IceGridGUI/LiveDeployment/Server.java +++ b/java/src/IceGridGUI/LiveDeployment/Server.java @@ -555,7 +555,8 @@ class Server extends ListArrayTreeNode // IceBox servers // _icons[0][1][0] = Utils.getIcon("/icons/16x16/icebox_server_unknown.png"); - _icons[ServerState.Inactive.ordinal() + 1][1][0] = Utils.getIcon("/icons/16x16/icebox_server_inactive.png"); + _icons[ServerState.Inactive.ordinal() + 1][1][0] = + Utils.getIcon("/icons/16x16/icebox_server_inactive.png"); _icons[ServerState.Activating.ordinal() + 1][1][0] = Utils.getIcon("/icons/16x16/icebox_server_activating.png"); _icons[ServerState.ActivationTimedOut.ordinal() + 1][1][0] = |