]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/checkbox.cpp
Store menus titles in menus themselves in wxOSX.
[wxWidgets.git] / src / msw / checkbox.cpp
index 3d2e8d80a9d575c23ccd13a14003e3ccbc4dceb2..2a9e8643ef0cf99636b1b8eaf7ea37ddffcd5588 100644 (file)
@@ -153,22 +153,16 @@ bool wxCheckBox::Create(wxWindow *parent,
 {
     Init();
 
 {
     Init();
 
+    WXValidateStyle(&style);
     if ( !CreateControl(parent, id, pos, size, style, validator, name) )
         return false;
 
     long msStyle = WS_TABSTOP;
 
     if ( style & wxCHK_3STATE )
     if ( !CreateControl(parent, id, pos, size, style, validator, name) )
         return false;
 
     long msStyle = WS_TABSTOP;
 
     if ( style & wxCHK_3STATE )
-    {
         msStyle |= BS_3STATE;
         msStyle |= BS_3STATE;
-    }
     else
     else
-    {
-        wxASSERT_MSG( !Is3rdStateAllowedForUser(),
-            wxT("Using wxCH_ALLOW_3RD_STATE_FOR_USER")
-            wxT(" style flag for a 2-state checkbox is useless") );
         msStyle |= BS_CHECKBOX;
         msStyle |= BS_CHECKBOX;
-    }
 
     if ( style & wxALIGN_RIGHT )
     {
 
     if ( style & wxALIGN_RIGHT )
     {