X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/141d782d567f92933f6fe868fff5bace77e8ecd2..333e57d578e9e0fb6555452b5a53698ffd85ee69:/include/wx/gtk/dirdlg.h diff --git a/include/wx/gtk/dirdlg.h b/include/wx/gtk/dirdlg.h index ea078fd2ab..35d6085c21 100644 --- a/include/wx/gtk/dirdlg.h +++ b/include/wx/gtk/dirdlg.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: dirdlg.h -// Purpose: wxDirDialogGTK +// Purpose: wxDirDialog // Author: Francesco Montorsi // Id: $Id$ // Copyright: (c) 2006 Francesco Montorsi @@ -13,15 +13,15 @@ #include "wx/generic/dirdlgg.h" //------------------------------------------------------------------------- -// wxDirDialogGTK +// wxDirDialog //------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxDirDialogGTK : public wxGenericDirDialog +class WXDLLIMPEXP_CORE wxDirDialog : public wxGenericDirDialog { public: - wxDirDialogGTK() { } + wxDirDialog() { } - wxDirDialogGTK(wxWindow *parent, + wxDirDialog(wxWindow *parent, const wxString& message = wxDirSelectorPromptStr, const wxString& defaultPath = wxEmptyString, long style = wxDD_DEFAULT_STYLE, @@ -29,7 +29,7 @@ public: const wxSize& size = wxDefaultSize, const wxString& name = wxDirDialogNameStr); - virtual ~wxDirDialogGTK(); + virtual ~wxDirDialog() { } public: // overrides from wxGenericDirDialog @@ -41,9 +41,6 @@ public: // overrides from wxGenericDirDialog virtual bool Show( bool show = true ); -//private: must be accessible by GTK callback - bool m_destroyed_by_delete; - protected: // override this from wxTLW since the native // form doesn't have any m_wxwindow @@ -53,7 +50,7 @@ protected: private: - DECLARE_DYNAMIC_CLASS(wxDirDialogGTK) + DECLARE_DYNAMIC_CLASS(wxDirDialog) DECLARE_EVENT_TABLE() void OnFakeOk( wxCommandEvent &event ); };