- long style,
- const wxPoint& pos )
- :wxFileDialogBase(parent, message, defaultDir, defaultFile, wildCard, style, pos)
+ long style,
+ const wxPoint& pos,
+ bool bypassGenericImpl ) : wxFileDialogBase()
+{
+ Init();
+ Create( parent, message, defaultDir, defaultFile, wildCard, style, pos, bypassGenericImpl );
+}
+
+bool wxGenericFileDialog::Create( wxWindow *parent,
+ const wxString& message,
+ const wxString& defaultDir,
+ const wxString& defaultFile,
+ const wxString& wildCard,
+ long style,
+ const wxPoint& pos,
+ bool bypassGenericImpl )