]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/radiobox.h
minor cleanup
[wxWidgets.git] / include / wx / palmos / radiobox.h
index 03b0941b786472ebaa7af38095c7bb094c655e03..16cccd278daa0c541cb1c1a25ae62ee723f29f00 100644 (file)
@@ -88,15 +88,15 @@ public:
     // implement the radiobox interface
     virtual void SetSelection(int n);
     virtual int GetSelection() const;
-    virtual int GetCount() const;
-    virtual wxString GetString(int n) const;
-    virtual void SetString(int n, const wxString& label);
+    virtual unsigned int GetCount() const;
+    virtual wxString GetString(unsigned int n) const;
+    virtual void SetString(unsigned int n, const wxString& label);
 
     virtual bool Enable(bool enable = true);
-    virtual bool Enable(int n, bool enable = true);
+    virtual bool Enable(unsigned int n, bool enable = true);
 
     virtual bool Show(bool show = true);
-    virtual bool Show(int n, bool show = true);
+    virtual bool Show(unsigned int n, bool show = true);
 
     virtual void SetLabel(const wxString& label);
     virtual wxString GetLabel();
@@ -136,12 +136,11 @@ protected:
     // get the total size occupied by the radio box buttons
     wxSize GetTotalButtonSize(const wxSize& sizeBtn) const;
 
-    int *             m_radioWidth;  // for bitmaps
-    int *             m_radioHeight;
+    int *m_radioWidth;  // for bitmaps
+    int *m_radioHeight;
 
-    int               m_noItems;
-    int               m_noRowsOrCols;
-    int               m_selectedButton;
+    int  m_noRowsOrCols;
+    int  m_selectedButton;
 
     virtual wxSize DoGetBestSize() const;