diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-12-20 11:44:40 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-12-20 11:44:40 +0000 |
commit | bc056628919427a904655250ef0f96b8c2b30d66 (patch) | |
tree | 122ebc7bdefba9e865fe2e8a7ef4d156f660608f /java/src/IceGridGUI/Application/PropertiesField.java | |
parent | - Added internal descriptor types for node-registry communications (diff) | |
download | ice-bc056628919427a904655250ef0f96b8c2b30d66.tar.bz2 ice-bc056628919427a904655250ef0f96b8c2b30d66.tar.xz ice-bc056628919427a904655250ef0f96b8c2b30d66.zip |
Removed property attributes and added iceVersion
Diffstat (limited to 'java/src/IceGridGUI/Application/PropertiesField.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/PropertiesField.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceGridGUI/Application/PropertiesField.java b/java/src/IceGridGUI/Application/PropertiesField.java index b497368454a..f78b45c26e4 100755 --- a/java/src/IceGridGUI/Application/PropertiesField.java +++ b/java/src/IceGridGUI/Application/PropertiesField.java @@ -77,7 +77,7 @@ public class PropertiesField extends JTable public void setProperties(java.util.List properties, java.util.List adapters, - LogDescriptor[] logs, + String[] logs, Utils.Resolver resolver, boolean editable) { _editable = editable; @@ -127,7 +127,7 @@ public class PropertiesField extends JTable { for(int i = 0; i < logs.length; ++i) { - hiddenPropertyValues.add(logs[i].path); + hiddenPropertyValues.add(logs[i]); } } |