summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/ReplicaGroupEditor.java
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2006-05-31 02:36:19 +0000
committerBernard Normier <bernard@zeroc.com>2006-05-31 02:36:19 +0000
commit30f98a26bbf51552b5ec361e1a9ff89a778fd6d5 (patch)
tree6058928209564e76b87b5b7a4d8b2df0e6006e8c /java/src/IceGridGUI/Application/ReplicaGroupEditor.java
parentAdded tooltips to Login dialog (diff)
downloadice-30f98a26bbf51552b5ec361e1a9ff89a778fd6d5.tar.bz2
ice-30f98a26bbf51552b5ec361e1a9ff89a778fd6d5.tar.xz
ice-30f98a26bbf51552b5ec361e1a9ff89a778fd6d5.zip
Save now applies if needed
Diffstat (limited to 'java/src/IceGridGUI/Application/ReplicaGroupEditor.java')
-rwxr-xr-xjava/src/IceGridGUI/Application/ReplicaGroupEditor.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/java/src/IceGridGUI/Application/ReplicaGroupEditor.java b/java/src/IceGridGUI/Application/ReplicaGroupEditor.java
index 73077dc1858..aa684fa3b89 100755
--- a/java/src/IceGridGUI/Application/ReplicaGroupEditor.java
+++ b/java/src/IceGridGUI/Application/ReplicaGroupEditor.java
@@ -32,7 +32,7 @@ import IceGridGUI.*;
class ReplicaGroupEditor extends Editor
{
- protected void applyUpdate()
+ protected boolean applyUpdate()
{
ReplicaGroup replicaGroup = (ReplicaGroup)_target;
Root root = replicaGroup.getRoot();
@@ -72,7 +72,7 @@ class ReplicaGroupEditor extends Editor
e.toString(),
"Apply failed",
JOptionPane.ERROR_MESSAGE);
- return;
+ return false;
}
//
@@ -124,7 +124,7 @@ class ReplicaGroupEditor extends Editor
e.toString(),
"Apply failed",
JOptionPane.ERROR_MESSAGE);
- return;
+ return false;
}
//
@@ -144,6 +144,7 @@ class ReplicaGroupEditor extends Editor
root.getCoordinator().getCurrentTab().showNode(_target);
_applyButton.setEnabled(false);
_discardButton.setEnabled(false);
+ return true;
}
finally
{