]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dialog.cpp
1. status bar can now be positioned on top (and anywhere, in fact)
[wxWidgets.git] / src / gtk / dialog.cpp
index 70c83e3c7732a7b6486978f49a4163f6f7b39f5b..55d5e955114854e6c749e4eba331c7dbd45a7faa 100644 (file)
@@ -267,8 +267,6 @@ bool wxDialog::Create( wxWindow *parent,
                        const wxPoint &pos, const wxSize &size,
                        long style, const wxString &name )
 {
-    g_openDialogs++;
-
     wxTopLevelWindows.Append( this );
 
     m_needParent = FALSE;
@@ -345,8 +343,6 @@ wxDialog::~wxDialog()
     {
         wxTheApp->ExitMainLoop();
     }
-    
-    g_openDialogs--;
 }
 
 void wxDialog::SetTitle( const wxString& title )
@@ -631,10 +627,14 @@ int wxDialog::ShowModal()
 
     m_modalShowing = TRUE;
 
+    g_openDialogs++;
+
     gtk_grab_add( m_widget );
     gtk_main();
     gtk_grab_remove( m_widget );
 
+    g_openDialogs--;
+
     return GetReturnCode();
 }