return wxSize(wCheckbox, hCheckbox);
}
+WXHBRUSH wxCheckBox::MSWGetDefaultBgBrush()
+{
+ return ::GetStockObject(NULL_BRUSH);
+}
+
void wxCheckBox::SetValue(bool val)
{
if (val)
bool wxCheckBox::GetValue() const
{
- return (Get3StateValue() != 0);
+ return (Get3StateValue() != wxCHK_UNCHECKED);
}
void wxCheckBox::Command(wxCommandEvent& event)