]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/checkbox.h
Implement setFont on the iOS port of wxStaticText.
[wxWidgets.git] / interface / wx / checkbox.h
index 60d8135c026c24eb776218f828b7d6741c4e58a3..231ba84d9b492367b06717aa455cea5a17be9f4e 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        checkbox.h
 // Purpose:     interface of wxCheckBox
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -63,7 +62,7 @@ enum wxCheckBoxState
 
     @beginEventEmissionTable{wxCommandEvent}
     @event{EVT_CHECKBOX(id, func)}
-           Process a @c wxEVT_COMMAND_CHECKBOX_CLICKED event, when the checkbox
+           Process a @c wxEVT_CHECKBOX event, when the checkbox
            is clicked.
     @endEventTable
 
@@ -170,7 +169,7 @@ public:
 
     /**
         Sets the checkbox to the given state. This does not cause a
-        @c wxEVT_COMMAND_CHECKBOX_CLICKED event to get emitted.
+        @c wxEVT_CHECKBOX event to get emitted.
 
         @param state
             If @true, the check is on, otherwise it is off.
@@ -179,7 +178,7 @@ public:
 
     /**
         Sets the checkbox to the given state. This does not cause a
-        @c wxEVT_COMMAND_CHECKBOX_CLICKED event to get emitted.
+        @c wxEVT_CHECKBOX event to get emitted.
 
         Asserts when the checkbox is a 2-state checkbox and setting the state
         to wxCHK_UNDETERMINED.