diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-12-13 15:50:27 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-12-13 15:50:27 +0000 |
commit | 85ab37aed400243314801028e6a7b32a52d53670 (patch) | |
tree | f3d6f941a95c0cd4443f1db910390e58f2bee8be /java/src/IceGridGUI/Application/TreeNode.java | |
parent | - Updating makewindist.py and component files to sync with changes in (diff) | |
download | ice-85ab37aed400243314801028e6a7b32a52d53670.tar.bz2 ice-85ab37aed400243314801028e6a7b32a52d53670.tar.xz ice-85ab37aed400243314801028e6a7b32a52d53670.zip |
Fixed bug #1611
Diffstat (limited to 'java/src/IceGridGUI/Application/TreeNode.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/TreeNode.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/TreeNode.java b/java/src/IceGridGUI/Application/TreeNode.java index ae738a718f1..c7af0ac6345 100755 --- a/java/src/IceGridGUI/Application/TreeNode.java +++ b/java/src/IceGridGUI/Application/TreeNode.java @@ -46,7 +46,7 @@ public abstract class TreeNode extends TreeNodeBase super(parent, id); } - Root getRoot() + public Root getRoot() { assert _parent != null; return ((TreeNode)_parent).getRoot(); |