summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-02-13 22:55:40 +0100
committerJose <jose@zeroc.com>2017-02-13 22:55:40 +0100
commitfbee9d73e72db929a1f9ee86605c6cb2de72041a (patch)
tree23c42c8751238428788929365cf0ddc9d83870d8
parentJS stringVersion/intVersion should include comment (diff)
downloadice-fbee9d73e72db929a1f9ee86605c6cb2de72041a.tar.bz2
ice-fbee9d73e72db929a1f9ee86605c6cb2de72041a.tar.xz
ice-fbee9d73e72db929a1f9ee86605c6cb2de72041a.zip
Connection wizard dialog becomes readonly
-rw-r--r--java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java b/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java
index a74f3d2a214..aec0e540ddb 100644
--- a/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java
+++ b/java/src/IceGridGUI/src/main/java/com/zeroc/IceGridGUI/SessionKeeper.java
@@ -1056,7 +1056,7 @@ public class SessionKeeper
{
ConnectionWizardDialog(JDialog parent)
{
- super(parent, true);
+ super(_coordinator.getMainFrame(), true);
_x509CertificateDefault = true;
initialize("New Connection - IceGrid GUI", parent);
_connectNow = true;
@@ -1064,7 +1064,7 @@ public class SessionKeeper
ConnectionWizardDialog(ConnectionInfo inf, JDialog parent)
{
- super(parent, true);
+ super(_coordinator.getMainFrame(), true);
_conf = inf;
_x509CertificateDefault = false;
initialize("Edit Connection - IceGrid GUI", parent);