Web pgadmin.org
 Home 
 ·  ·  ·  ·  ·  ·  · 
CVS Commit by andreas: Foreign key column selection detection improved

CVS Commit by andreas: Foreign key column selection detection improved



Log Message:
-----------
Foreign key column selection detection improved

Modified Files:
--------------
    pgadmin3/src/ui:
        dlgForeignKey.cpp (r1.25 -> r1.26)

Index: dlgForeignKey.cpp
===================================================================
RCS file: /projects/pgadmin3/src/ui/dlgForeignKey.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -Lsrc/ui/dlgForeignKey.cpp -Lsrc/ui/dlgForeignKey.cpp -u -w -r1.25 -r1.26
--- src/ui/dlgForeignKey.cpp
+++ src/ui/dlgForeignKey.cpp
@@ -217,6 +217,7 @@
         delete set;
         cbRefColumns->SetSelection(0);
     }
+    OnSelChangeRefCol(ev);
 }
 
 
@@ -366,6 +367,9 @@
 
     processing=false;
 
+    wxCommandEvent nullEvent;
+    OnSelChangeRef(nullEvent);
+
     return dlgCollistProperty::Go(modal);
 }
 


Home | Main Index | Thread Index

top