]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/radiobut.cpp
Added files for wxNotebook and wxCocoaNSTabView
[wxWidgets.git] / src / msw / radiobut.cpp
index 96f4803110b9aa557403689f578971e8f1d27eed..3cf326adf75e2b716b4199462d064051e087c233 100644 (file)
@@ -158,9 +158,7 @@ bool wxRadioButton::Create(wxWindow *parent,
 
 void wxRadioButton::SetValue(bool value)
 {
-    // BST_CHECKED is defined as 1, BST_UNCHECKED as 0, so we can just pass
-    // value as is (we don't use BST_XXX here as they're not defined for Win16)
-    (void)::SendMessage(GetHwnd(), BM_SETCHECK, (WPARAM)value, 0L);
+    (void)::SendMessage(GetHwnd(), BM_SETCHECK, (value?BST_CHECKED:BST_UNCHECKED), 0L);
 
     m_isChecked = value;