wxMSW doesn't have the default ctor or Create method for wxDirDialog yet.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39159 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-05-15 15:32:26 +00:00
parent 9c5c87674a
commit 2daad28083

View File

@ -137,15 +137,15 @@ public:
const wxString& name = wxPyDirDialogNameStr),
"Constructor. Use ShowModal method to show the dialog.", "");
%RenameCtor(PreDirDialog, wxDirDialog());
// %RenameCtor(PreDirDialog, wxDirDialog());
bool Create(wxWindow *parent,
const wxString& title = wxDirSelectorPromptStr,
const wxString& defaultPath = wxEmptyString,
long style = wxDD_DEFAULT_STYLE,
const wxPoint& pos = wxDefaultPosition,
const wxSize& sz = wxDefaultSize,
const wxString& name = wxPyDirDialogNameStr);
// bool Create(wxWindow *parent,
// const wxString& title = wxDirSelectorPromptStr,
// const wxString& defaultPath = wxEmptyString,
// long style = wxDD_DEFAULT_STYLE,
// const wxPoint& pos = wxDefaultPosition,
// const wxSize& sz = wxDefaultSize,
// const wxString& name = wxPyDirDialogNameStr);
DocDeclStr(
wxString , GetPath(),