X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..ff001ada4c8dd35e175068f64ed458a917695c23:/interface/wx/dirdlg.h diff --git a/interface/wx/dirdlg.h b/interface/wx/dirdlg.h index 4d21deac85..d34a054a3d 100644 --- a/interface/wx/dirdlg.h +++ b/interface/wx/dirdlg.h @@ -8,7 +8,6 @@ /** @class wxDirDialog - @wxheader{dirdlg.h} This class represents the directory chooser dialog. @@ -66,27 +65,27 @@ public: /** Destructor. */ - ~wxDirDialog(); + virtual ~wxDirDialog(); /** Returns the message that will be displayed on the dialog. */ - wxString GetMessage() const; + virtual wxString GetMessage() const; /** Returns the default or user-selected path. */ - wxString GetPath() const; + virtual wxString GetPath() const; /** Sets the message that will be displayed on the dialog. */ - void SetMessage(const wxString& message); + virtual void SetMessage(const wxString& message); /** Sets the default path. */ - void SetPath(const wxString& path); + virtual void SetPath(const wxString& path); /** Shows the dialog, returning wxID_OK if the user pressed OK, and