X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..7eaed395dd7174051bd3ff7e1ed46d9c7cda87cc:/interface/wx/radiobox.h diff --git a/interface/wx/radiobox.h b/interface/wx/radiobox.h index 2aeb3772fa..e75165e4c1 100644 --- a/interface/wx/radiobox.h +++ b/interface/wx/radiobox.h @@ -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.