]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/radiobox.h
Move code removing "-psn_xxx" command line arguments to common code.
[wxWidgets.git] / interface / wx / radiobox.h
index fe5f106f6dfccdf6537d27fd53c5a530fa394244..c6c1c2cdea57f58797f7324f2b1dc469678dd5a8 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        radiobox.h
 // Purpose:     interface of wxRadioBox
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -287,6 +286,14 @@ public:
     */
     void SetItemToolTip(unsigned int item, const wxString& text);
 
+    /**
+        Sets the selection to the given item.
+
+        Notice that a radio box always has selection, so @a n must be valid
+        here and passing @c wxNOT_FOUND is not allowed.
+     */
+    virtual void SetSelection(int n);
+
     /**
         Shows or hides individual buttons.
 
@@ -310,7 +317,6 @@ public:
     virtual unsigned int GetCount() const;
     virtual wxString GetString(unsigned int n) const;
     virtual void SetString(unsigned int n, const wxString& string);
-    virtual void SetSelection(int n);
     virtual int GetSelection() const;
 
 };