]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/radiobox.h
Corrected library association
[wxWidgets.git] / interface / wx / radiobox.h
index 2aeb3772fa789e899a77c97aa0ba4855d465cfe0..d3bc7cb56710d5448f11d63055e7b11d939ff6df 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
@@ -33,7 +32,7 @@
 
     @library{wxcore}
     @category{ctrl}
-    <!-- @appearance{radiobox.png} -->
+    @appearance{radiobox.png}
 
     @see @ref overview_eventhandling, wxRadioButton, wxCheckBox
 */
@@ -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.