X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e78d4a23c27aa9b5e826d56c76c80d46d67812c1..4a7ec775feb4f125cbeffe641a8e48b0a42848eb:/include/wx/msw/dirdlg.h diff --git a/include/wx/msw/dirdlg.h b/include/wx/msw/dirdlg.h index ac2f48971d..8a6e53b4e4 100644 --- a/include/wx/msw/dirdlg.h +++ b/include/wx/msw/dirdlg.h @@ -29,17 +29,16 @@ public: void SetMessage(const wxString& message) { m_message = message; } void SetPath(const wxString& path); - void SetStyle(long style) { m_dialogStyle = style; } + void SetStyle(long style) { SetWindowStyle(style); } wxString GetMessage() const { return m_message; } wxString GetPath() const { return m_path; } - long GetStyle() const { return m_dialogStyle; } + long GetStyle() const { return GetWindowStyle(); } virtual int ShowModal(); protected: wxString m_message; - long m_dialogStyle; wxString m_path; private: