Thread: SVN Commit by andreas: r4789 - trunk/pgadmin3/src/dlg

SVN Commit by andreas: r4789 - trunk/pgadmin3/src/dlg

From
svn@pgadmin.org
Date:
Author: andreas
Date: 2005-12-03 01:07:02 +0000 (Sat, 03 Dec 2005)
New Revision: 4789

Modified:
   trunk/pgadmin3/src/dlg/dlgHbaConfig.cpp
Log:
gtk fix

Modified: trunk/pgadmin3/src/dlg/dlgHbaConfig.cpp
===================================================================
--- trunk/pgadmin3/src/dlg/dlgHbaConfig.cpp    2005-12-03 00:37:38 UTC (rev 4788)
+++ trunk/pgadmin3/src/dlg/dlgHbaConfig.cpp    2005-12-03 01:07:02 UTC (rev 4789)
@@ -132,12 +132,9 @@
         cbUser->SetValue(user);
         txtIPaddress->SetValue(line->ipaddress);
         txtOption->SetValue(line->option);
-
-        wxCommandEvent noEvent;
-        OnChange(noEvent);
-    }
-    else
-        btnOK->Disable();
+    }
+    wxCommandEvent noEvent;
+    OnChange(noEvent);
 }