]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/radiobut.h
add @onlyfor tags to remove further ifacecheck warnings
[wxWidgets.git] / interface / radiobut.h
index 0fa6d4441cfce5c4321b2e0a03b7535a01927888..1dc741718f191de3f820bd5c0db3b33db3e95d21 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        radiobut.h
-// Purpose:     documentation for wxRadioButton class
+// Purpose:     interface of wxRadioButton
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -41,8 +41,7 @@
     @category{ctrl}
     @appearance{radiobutton.png}
 
-    @seealso
-    @ref overview_eventhandlingoverview, wxRadioBox, wxCheckBox
+    @see @ref overview_eventhandlingoverview, wxRadioBox, wxCheckBox
 */
 class wxRadioButton : public wxControl
 {
@@ -50,7 +49,7 @@ public:
     //@{
     /**
         Constructor, creating and showing a radio button.
-        
+
         @param parent
             Parent window. Must not be @NULL.
         @param id
@@ -69,7 +68,7 @@ public:
             Window validator.
         @param name
             Window name.
-        
+
         @see Create(), wxValidator
     */
     wxRadioButton();
@@ -102,14 +101,15 @@ public:
     /**
         Returns @true if the radio button is depressed, @false otherwise.
     */
-    bool GetValue();
+    bool GetValue() const;
 
     /**
         Sets the radio button to selected or deselected status. This does not cause a
         wxEVT_COMMAND_RADIOBUTTON_SELECTED event to get emitted.
-        
+
         @param value
             @true to select, @false to deselect.
     */
     void SetValue(const bool value);
 };
+