X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/45f4109c41d3b02d448559f33682be709f02bb61..25107357efda3e74e2752f28f95017a4fe158678:/src/common/fldlgcmn.cpp?ds=sidebyside diff --git a/src/common/fldlgcmn.cpp b/src/common/fldlgcmn.cpp index ecaa62b0a0..e87d5776c8 100644 --- a/src/common/fldlgcmn.cpp +++ b/src/common/fldlgcmn.cpp @@ -19,6 +19,7 @@ #if wxUSE_FILEDLG #include "wx/filedlg.h" +#include "wx/dirdlg.h" #ifndef WX_PRECOMP #include "wx/string.h" @@ -113,6 +114,19 @@ int wxFileDialogBase::ParseWildcard(const wxString& filterStr, } #endif // WXWIN_COMPATIBILITY_2_4 +#if WXWIN_COMPATIBILITY_2_6 +long wxFileDialogBase::GetStyle() const +{ + return GetWindowStyle(); +} + +void wxFileDialogBase::SetStyle(long style) +{ + SetWindowStyle(style); +} +#endif // WXWIN_COMPATIBILITY_2_6 + + wxString wxFileDialogBase::AppendExtension(const wxString &filePath, const wxString &extensionList) { @@ -313,4 +327,22 @@ WXDLLEXPORT wxString wxSaveFileSelector(const wxChar *what, return wxDefaultFileSelector(false, what, extension, default_name, parent); } + +//---------------------------------------------------------------------------- +// wxDirDialogBase +//---------------------------------------------------------------------------- + +#if WXWIN_COMPATIBILITY_2_6 +long wxDirDialogBase::GetStyle() const +{ + return GetWindowStyle(); +} + +void wxDirDialogBase::SetStyle(long style) +{ + SetWindowStyle(style); +} +#endif // WXWIN_COMPATIBILITY_2_6 + + #endif // wxUSE_FILEDLG