]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/dirdlg.h
Temporarily disable colour picker to keep build working and bofore finding nice repla...
[wxWidgets.git] / include / wx / msw / dirdlg.h
index 9800ab84f1101528aef58249c2000027c271ba69..23e416fe2ec8cdd8163f5f3a7561db1e860bd2c2 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_DIRDLG_H_
 #define _WX_DIRDLG_H_
 
-class WXDLLEXPORT wxDirDialog : public wxDialog
+class WXDLLEXPORT wxDirDialog : public wxDirDialogBase
 {
 public:
     wxDirDialog(wxWindow *parent,
@@ -23,20 +23,10 @@ public:
                 const wxSize& size = wxDefaultSize,
                 const wxString& name = wxDirDialogNameStr);
 
-    void SetMessage(const wxString& message) { m_message = message; }
     void SetPath(const wxString& path);
-    void SetStyle(long style) { SetWindowStyle(style); }
-
-    wxString GetMessage() const { return m_message; }
-    wxString GetPath() const { return m_path; }
-    long GetStyle() const { return GetWindowStyle(); }
 
     virtual int ShowModal();
 
-protected:
-    wxString    m_message;
-    wxString    m_path;
-
 private:
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxDirDialog)
 };