]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/dirdlg.h
use the native wxImageList under Win32 as otherwise xUniv doesn't link currently
[wxWidgets.git] / include / wx / motif / dirdlg.h
index b27cb744663b1d1999f76a663021eb386a8ca34e..6a9275c1baf790974c2971484507d3c2512d6fd8 100644 (file)
@@ -22,22 +22,22 @@ WXDLLEXPORT_DATA(extern const char*) wxFileSelectorPromptStr;
 
 class WXDLLEXPORT wxDirDialog: public wxDialog
 {
-DECLARE_DYNAMIC_CLASS(wxDirDialog)
+    DECLARE_DYNAMIC_CLASS(wxDirDialog)
 public:
     wxDirDialog(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr,
         const wxString& defaultPath = "",
         long style = 0, const wxPoint& pos = wxDefaultPosition);
-
+    
     inline void SetMessage(const wxString& message) { m_message = message; }
     inline void SetPath(const wxString& path) { m_path = path; }
     inline void SetStyle(long style) { m_dialogStyle = style; }
-
+    
     inline wxString GetMessage() const { return m_message; }
     inline wxString GetPath() const { return m_path; }
     inline long GetStyle() const { return m_dialogStyle; }
-
+    
     int ShowModal();
-
+    
 protected:
     wxString    m_message;
     long        m_dialogStyle;
@@ -46,4 +46,4 @@ protected:
 };
 
 #endif
-    // _WX_DIRDLG_H_
+// _WX_DIRDLG_H_