]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/checkbox.cpp
define WM_CONTEXTMENU if the standard headers don't
[wxWidgets.git] / src / msw / checkbox.cpp
index 547e418e0665dc392986d05daea181423bed9591..9e0897ed4e235eaf33891fb5de9571417e5b293c 100644 (file)
@@ -201,6 +201,11 @@ wxSize wxCheckBox::DoGetBestSize() const
     return wxSize(wCheckbox, hCheckbox);
 }
 
+WXHBRUSH wxCheckBox::MSWGetDefaultBgBrush()
+{
+    return ::GetStockObject(NULL_BRUSH);
+}
+
 void wxCheckBox::SetValue(bool val)
 {
     if (val)
@@ -215,7 +220,7 @@ void wxCheckBox::SetValue(bool val)
 
 bool wxCheckBox::GetValue() const
 {
-    return (Get3StateValue() != 0);
+    return (Get3StateValue() != wxCHK_UNCHECKED);
 }
 
 void wxCheckBox::Command(wxCommandEvent& event)