]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/radiobox.h
Cast for argument to delete[] - VC6 doesn't want to delete a const pointer
[wxWidgets.git] / include / wx / mac / carbon / radiobox.h
index 177d4a17c8e66d7c0f906e2d733a51b0bc0a2a8d..ac0747ff245bee54c5f404afcc39d3ac0126e846 100644 (file)
@@ -17,7 +17,7 @@ class WXDLLIMPEXP_FWD_CORE wxBitmap ;
 
 class WXDLLIMPEXP_FWD_CORE wxRadioButton ;
 
-class WXDLLEXPORT wxRadioBox: public wxControl, public wxRadioBoxBase
+class WXDLLIMPEXP_CORE wxRadioBox: public wxControl, public wxRadioBoxBase
 {
     DECLARE_DYNAMIC_CLASS(wxRadioBox)
 public:
@@ -57,20 +57,12 @@ public:
     // Enabling
     virtual bool Enable(bool enable = true);
     virtual bool Enable(unsigned int item, bool enable = true);
-    virtual bool IsItemEnabled(unsigned int WXUNUSED(n)) const
-    {
-        /* TODO */
-        return true;
-    }
+    virtual bool IsItemEnabled(unsigned int item) const;
 
     // Showing
     virtual bool Show(bool show = true);
     virtual bool Show(unsigned int item, bool show = true);
-    virtual bool IsItemShown(unsigned int WXUNUSED(n)) const
-    {
-        /* TODO */
-        return true;
-    }
+    virtual bool IsItemShown(unsigned int item) const;
 
     // Specific functions (in wxWidgets2 reference)
     virtual void SetSelection(int item);