diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-12-13 01:25:52 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-12-13 01:25:52 +0000 |
commit | c3f7111d6e16e9dad5559387dab99e65e794bde8 (patch) | |
tree | 1fea560aa84ea86b572c9373e3d2fa4be9dd4bcf /java/src/IceGridGUI/LiveActions.java | |
parent | Completed ShowLogDialog implementation (diff) | |
download | ice-c3f7111d6e16e9dad5559387dab99e65e794bde8.tar.bz2 ice-c3f7111d6e16e9dad5559387dab99e65e794bde8.tar.xz ice-c3f7111d6e16e9dad5559387dab99e65e794bde8.zip |
Fixed bug # 1613
Diffstat (limited to 'java/src/IceGridGUI/LiveActions.java')
-rwxr-xr-x | java/src/IceGridGUI/LiveActions.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/src/IceGridGUI/LiveActions.java b/java/src/IceGridGUI/LiveActions.java index 8fe48b81fea..df5d8e18af5 100755 --- a/java/src/IceGridGUI/LiveActions.java +++ b/java/src/IceGridGUI/LiveActions.java @@ -120,7 +120,7 @@ public class LiveActions _array[TreeNode.SIGUSR2] = new SendSignal("SIGUSR2"); _array[TreeNode.SIGTERM] = new SendSignal("SIGTERM"); - _array[TreeNode.WRITE_MESSAGE] = new AbstractAction("Write message") + _array[TreeNode.WRITE_MESSAGE] = new AbstractAction("Write Message") { public void actionPerformed(ActionEvent e) { @@ -131,7 +131,7 @@ public class LiveActions "Write message to stdout or stderr"); - _array[TreeNode.RETRIEVE_STDOUT] = new AbstractAction("Retrieve stdout") + _array[TreeNode.RETRIEVE_STDOUT] = new AbstractAction("Retrieve Stdout") { public void actionPerformed(ActionEvent e) { @@ -141,7 +141,7 @@ public class LiveActions _array[TreeNode.RETRIEVE_STDOUT].putValue(Action.SHORT_DESCRIPTION, "Retrieve stdout"); - _array[TreeNode.RETRIEVE_STDERR] = new AbstractAction("Retrieve stderr") + _array[TreeNode.RETRIEVE_STDERR] = new AbstractAction("Retrieve Stderr") { public void actionPerformed(ActionEvent e) { @@ -169,7 +169,7 @@ public class LiveActions }; _array[TreeNode.PATCH_SERVER] = - new AbstractAction("Patch distribution") + new AbstractAction("Patch Distribution") { public void actionPerformed(ActionEvent e) { @@ -178,7 +178,7 @@ public class LiveActions }; _array[TreeNode.ADD_OBJECT] = - new AbstractAction("Add well-known object") + new AbstractAction("Add Well-known Object") { public void actionPerformed(ActionEvent e) { |