]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/radiobox.h
show the function in which the assert failure occured if the compiler supports it
[wxWidgets.git] / include / wx / univ / radiobox.h
index 7cb1bb788834e694a5e76ddd8f7f21c9d8ae54c0..23d05281d6de9d864cc7a1cfcf8a294f04723726 100644 (file)
@@ -84,7 +84,7 @@ public:
     virtual void SetSelection(int n);
     virtual int GetSelection() const;
 
-    virtual int GetCount() const { return (int) m_buttons.GetCount(); }
+    virtual size_t GetCount() const { return m_buttons.GetCount(); }
 
     virtual wxString GetString(int n) const;
     virtual void SetString(int n, const wxString& label);
@@ -92,6 +92,9 @@ public:
     virtual bool Enable(int n, bool enable = true);
     virtual bool Show(int n, bool show = true);
 
+    virtual bool IsItemEnabled(int n) const;
+    virtual bool IsItemShown(int n) const;
+
     // we also override the wxControl methods to avoid virtual function hiding
     virtual bool Enable(bool enable = true);
     virtual bool Show(bool show = true);