]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/dirdlgg.cpp
Cured some bugs/typos/spacing in docs
[wxWidgets.git] / src / generic / dirdlgg.cpp
index 023ca20c91a41749ce2a45a6813a8a2584b5a467..f43ff6f7b545545b3e1d0c0eb52cddf6cdb7cba0 100644 (file)
@@ -20,6 +20,9 @@
 #endif
 
 #include "wx/defs.h"
 #endif
 
 #include "wx/defs.h"
+
+#if wxUSE_DIRDLG
+
 #include "wx/utils.h"
 #include "wx/dialog.h"
 #include "wx/button.h"
 #include "wx/utils.h"
 #include "wx/dialog.h"
 #include "wx/button.h"
@@ -31,6 +34,7 @@
 #include "wx/gdicmn.h"
 #include "wx/intl.h"
 #include "wx/imaglist.h"
 #include "wx/gdicmn.h"
 #include "wx/intl.h"
 #include "wx/imaglist.h"
+#include "wx/icon.h"
 
 #include "wx/generic/dirdlgg.h"
 
 
 #include "wx/generic/dirdlgg.h"
 
@@ -326,7 +330,7 @@ wxDirDialog::wxDirDialog(wxWindow *parent, const wxString& message,
                         const wxString& defaultPath, long style, 
                         const wxPoint& pos) : 
   wxDialog(parent, -1, message, pos, wxSize(300,300),
                         const wxString& defaultPath, long style, 
                         const wxPoint& pos) : 
   wxDialog(parent, -1, message, pos, wxSize(300,300),
-          wxDEFAULT_DIALOG_STYLE|wxDIALOG_MODAL)
+          wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
 {
   m_message = message;
   m_dialogStyle = style;
 {
   m_message = message;
   m_dialogStyle = style;
@@ -500,3 +504,5 @@ void wxDirDialog::OnCheck( wxCommandEvent& WXUNUSED(event) )
   printf("Checkbox clicked: %s\n", ( m_check->GetValue() ? "on" : "off" ) );
 }
 */
   printf("Checkbox clicked: %s\n", ( m_check->GetValue() ? "on" : "off" ) );
 }
 */
+
+#endif