From 80d87dff17669f3d02016bf41d99ca41762abc1c Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 07 Oct 2009 12:43:38 +0000
Subject: [PATCH] Fix for issue 4271 (control-panel: in remote mode, "Installation Path" is incorrect) Since using File when you have different OS in the control panel and in the managed server can be really problematic, use String instead in the ServerDescriptor object.

---
 opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/GenericDialog.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/GenericDialog.java b/opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/GenericDialog.java
index b0c439d..aaccfdf 100644
--- a/opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/GenericDialog.java
+++ b/opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/ui/GenericDialog.java
@@ -122,7 +122,7 @@
    */
   public GenericDialog(JFrame parentFrame, StatusGenericPanel panel)
   {
-    super();
+    super(parentFrame);
     this.panel = panel;
     if (panel.requiresBorder())
     {

--
Gitblit v1.10.0