]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/filedlg.cpp
Small distrib updates,
[wxWidgets.git] / src / gtk / filedlg.cpp
index 086a593ef5c586f71864efcd15969c33cd58980d..f2c2c99011a08316a906fbfc4a4bc8152553b35e 100644 (file)
@@ -116,7 +116,13 @@ wxFileDialog::wxFileDialog( wxWindow *parent, const wxString& message,
 {
     m_needParent = FALSE;
 
-    PreCreation( parent, -1, pos, wxDefaultSize, style | wxDIALOG_MODAL, "filedialog" );
+    if (!PreCreation( parent, pos, wxDefaultSize ) ||
+        !CreateBase( parent, -1, pos, wxDefaultSize, style | wxDIALOG_MODAL, wxDefaultValidator, _T("filedialog") ))
+    {
+        wxFAIL_MSG( _T("wxXX creation failed") );
+       return;
+    }
+    
     m_message = message;
     m_path = _T("");
     m_fileName = defaultFileName;