diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-05-23 23:20:23 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-05-23 23:20:23 +0000 |
commit | 9a042e584b24d3582243d98062d48b267f01700d (patch) | |
tree | 38dd2445da935ebacc82970b28e51519f75e1ff5 /java/src/IceGridGUI/Application/Communicator.java | |
parent | adding --meta option (diff) | |
download | ice-9a042e584b24d3582243d98062d48b267f01700d.tar.bz2 ice-9a042e584b24d3582243d98062d48b267f01700d.tar.xz ice-9a042e584b24d3582243d98062d48b267f01700d.zip |
fixes for abstract type mapping
Diffstat (limited to 'java/src/IceGridGUI/Application/Communicator.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/Communicator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/Communicator.java b/java/src/IceGridGUI/Application/Communicator.java index 8b5bec8604c..59a29fbf81d 100755 --- a/java/src/IceGridGUI/Application/Communicator.java +++ b/java/src/IceGridGUI/Application/Communicator.java @@ -985,7 +985,7 @@ abstract class Communicator extends TreeNode implements DescriptorHolder {
CommunicatorDescriptor descriptor = getCommunicatorDescriptor();
removeProperty(key);
- descriptor.propertySet.properties.addFirst(new PropertyDescriptor(key, newValue));
+ ((java.util.LinkedList)descriptor.propertySet.properties).addFirst(new PropertyDescriptor(key, newValue));
}
void removeProperty(String key)
|