]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/checkbox.h
wxChar -> char
[wxWidgets.git] / include / wx / checkbox.h
index 930d3d8e71b905fcb9dc7efb75ca26d5f85599ee..47ba77a0e22ad38d81a1aef428f6d7b18ded107b 100644 (file)
@@ -49,7 +49,7 @@ enum wxCheckBoxState
 };
 
 
-extern WXDLLEXPORT_DATA(const wxChar) wxCheckBoxNameStr[];
+extern WXDLLEXPORT_DATA(const char) wxCheckBoxNameStr[];
 
 // ----------------------------------------------------------------------------
 // wxCheckBox: a control which shows a label and a box which may be checked
@@ -111,6 +111,8 @@ public:
     // wxCheckBox-specific processing after processing the update event
     virtual void DoUpdateWindowUI(wxUpdateUIEvent& event)
     {
+        wxControl::DoUpdateWindowUI(event);
+
         if ( event.GetSetChecked() )
             SetValue(event.GetChecked());
     }