]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dialog.cpp
Small distrib updates,
[wxWidgets.git] / src / gtk / dialog.cpp
index fe199dd6de1edf8a47df420f7390e3c30e506be3..bed7d500ffc0419620660708ec89ddf1189231af 100644 (file)
@@ -248,7 +248,12 @@ bool wxDialog::Create( wxWindow *parent,
 
     m_needParent = FALSE;
 
-    PreCreation( parent, id, pos, size, style, name );
+    if (!PreCreation( parent, pos, size ) ||
+        !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
+    {
+        wxFAIL_MSG( _T("wxDialog creation failed") );
+       return FALSE;
+    }
 
     m_insertCallback = (wxInsertChildFunction) wxInsertChildInDialog;