]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/radiobox.h
Fixed wxPGMultiButton (event handling, FinalizePosition() -> Finalize(), no longer...
[wxWidgets.git] / interface / wx / radiobox.h
index 2aeb3772fa789e899a77c97aa0ba4855d465cfe0..e75165e4c11b660d16b93f7973f97acdaaeb43af 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxRadioBox
-    @wxheader{radiobox.h}
 
     A radio box item is used to select one of number of mutually exclusive
     choices.  It is displayed as a vertical column or horizontal row of
@@ -134,7 +133,7 @@ public:
     /**
         Destructor, destroying the radiobox item.
     */
-    ~wxRadioBox();
+    virtual ~wxRadioBox();
 
     /**
         Creates the radiobox for two-step construction. See wxRadioBox()
@@ -244,7 +243,7 @@ public:
         @param n
             The zero-based button position.
     */
-    bool IsItemEnabled(unsigned int n) const;
+    virtual bool IsItemEnabled(unsigned int n) const;
 
     /**
         Returns @true if the item is currently shown or @false if it was hidden
@@ -259,7 +258,7 @@ public:
         @param n
             The zero-based button position.
     */
-    bool IsItemShown(unsigned int n) const;
+    virtual bool IsItemShown(unsigned int n) const;
 
     /**
         Sets the helptext for an item. Empty string erases any existing helptext.