#pragma interface "dirdlgg.h"
#endif
+#include "wx/defs.h"
+
+#if wxUSE_DIRDLG
+
#include "wx/dialog.h"
-//#include "wx/checkbox.h"
+#include "wx/checkbox.h"
#include "wx/treectrl.h"
//-----------------------------------------------------------------------------
// data
//-----------------------------------------------------------------------------
-WXDLLEXPORT_DATA(extern const char*) wxFileSelectorPromptStr;
+WXDLLEXPORT_DATA(extern const wxChar*) wxFileSelectorPromptStr;
//-----------------------------------------------------------------------------
// classes
public:
wxDirDialog(wxWindow *parent,
const wxString& message = wxFileSelectorPromptStr,
- const wxString& defaultPath = "",
+ const wxString& defaultPath = wxEmptyString,
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; }
void doSize();
};
+#endif
+
#endif
// _WX_DIRDLGG_H_