]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/dirdlg.h
Add appearance tags
[wxWidgets.git] / interface / wx / dirdlg.h
index 4d21deac8577d18008a59a56462bdd2f1e7d95a4..d34a054a3d8f5f2e7d9a9e9b35696c6a11d24ad5 100644 (file)
@@ -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