summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Coordinator.java
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2006-06-29 18:34:21 +0000
committerBernard Normier <bernard@zeroc.com>2006-06-29 18:34:21 +0000
commitc878647e62ec4efe210ded6e00bbcf8c72bd1eb6 (patch)
tree8b252d74519ea6e3b441cff6d27b92aec87d6af0 /java/src/IceGridGUI/Coordinator.java
parentRemoved GPL_BUILD; readline is no longer used by default on Linux (diff)
downloadice-c878647e62ec4efe210ded6e00bbcf8c72bd1eb6.tar.bz2
ice-c878647e62ec4efe210ded6e00bbcf8c72bd1eb6.tar.xz
ice-c878647e62ec4efe210ded6e00bbcf8c72bd1eb6.zip
Removed GPL notices from IceGrid GUI
Diffstat (limited to 'java/src/IceGridGUI/Coordinator.java')
-rwxr-xr-xjava/src/IceGridGUI/Coordinator.java37
1 files changed, 2 insertions, 35 deletions
diff --git a/java/src/IceGridGUI/Coordinator.java b/java/src/IceGridGUI/Coordinator.java
index 16ebc4af5b6..b50ab366931 100755
--- a/java/src/IceGridGUI/Coordinator.java
+++ b/java/src/IceGridGUI/Coordinator.java
@@ -271,13 +271,7 @@ public class Coordinator
add(helpMenu);
helpMenu.add(_helpContents);
- if(GPL_BUILD)
- {
- helpMenu.addSeparator();
- helpMenu.add(_copying);
- helpMenu.add(_warranty);
- }
-
+
helpMenu.addSeparator();
helpMenu.add(_about);
}
@@ -1242,8 +1236,6 @@ public class Coordinator
_liveDeploymentRoot = new IceGridGUI.LiveDeployment.Root(this);
- _licenseDialog = new LicenseDialog(_mainFrame);
-
_sessionKeeper = new SessionKeeper(this);
_shutdownHook = new Thread("Shutdown hook")
@@ -1508,23 +1500,7 @@ public class Coordinator
helpContents();
}
};
-
- _copying = new AbstractAction("Copying conditions")
- {
- public void actionPerformed(ActionEvent e)
- {
- _licenseDialog.show("TOP");
- }
- };
-
- _warranty = new AbstractAction("(Non)Warranty")
- {
- public void actionPerformed(ActionEvent e)
- {
- _licenseDialog.show("WARRANTY");
- }
- };
-
+
_about = new AbstractAction("About")
{
public void actionPerformed(ActionEvent e)
@@ -1896,8 +1872,6 @@ public class Coordinator
private SessionKeeper _sessionKeeper;
private Object _clipboard;
-
- private LicenseDialog _licenseDialog;
//
// Actions
@@ -1920,8 +1894,6 @@ public class Coordinator
private Action _back;
private Action _forward;
private Action _helpContents;
- private Action _copying;
- private Action _warranty;
private Action _about;
private Action _patchApplication;
@@ -1958,9 +1930,4 @@ public class Coordinator
private String _fileParser;
static private final int HISTORY_MAX_SIZE = 20;
-
- //
- // TODO: should come from build system
- //
- static private final boolean GPL_BUILD = true;
}