From: Vadim Zeitlin Date: Fri, 13 Aug 2004 23:56:57 +0000 (+0000) Subject: use wxDD_DEFAULT_STYLE instead of 0 by default for style parameter of wxDirDialog... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0f0b19d6460e6b1eea33af51e8034c828cef35fa?ds=inline use wxDD_DEFAULT_STYLE instead of 0 by default for style parameter of wxDirDialog ctor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28777 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/mac/carbon/dirdlg.h b/include/wx/mac/carbon/dirdlg.h index 734292ade3..06a4122af0 100644 --- a/include/wx/mac/carbon/dirdlg.h +++ b/include/wx/mac/carbon/dirdlg.h @@ -22,7 +22,7 @@ public: wxDirDialog(wxWindow *parent, const wxString& message = wxDirSelectorPromptStr, const wxString& defaultPath = _T(""), - long style = 0, + long style = wxDD_DEFAULT_STYLE, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, const wxString& name = wxDirDialogNameStr); diff --git a/include/wx/mac/classic/dirdlg.h b/include/wx/mac/classic/dirdlg.h index 734292ade3..06a4122af0 100644 --- a/include/wx/mac/classic/dirdlg.h +++ b/include/wx/mac/classic/dirdlg.h @@ -22,7 +22,7 @@ public: wxDirDialog(wxWindow *parent, const wxString& message = wxDirSelectorPromptStr, const wxString& defaultPath = _T(""), - long style = 0, + long style = wxDD_DEFAULT_STYLE, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, const wxString& name = wxDirDialogNameStr); diff --git a/include/wx/msw/dirdlg.h b/include/wx/msw/dirdlg.h index bf31a0063a..a53cd1fff8 100644 --- a/include/wx/msw/dirdlg.h +++ b/include/wx/msw/dirdlg.h @@ -22,7 +22,7 @@ public: wxDirDialog(wxWindow *parent, const wxString& message = wxDirSelectorPromptStr, const wxString& defaultPath = wxEmptyString, - long style = 0, + long style = wxDD_DEFAULT_STYLE, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, const wxString& name = wxDirDialogNameStr);