]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/checkbox.cpp
Close tree edit even if the change is vetoed to be consistent with MSW [patch 1110252]
[wxWidgets.git] / src / palmos / checkbox.cpp
index 77f06f5409afb04451ae43f5807a6a398dcc32d2..5b55dd7c0024b6f38a9fe8bb10876f58b4bbb294 100644 (file)
@@ -117,11 +117,12 @@ wxSize wxCheckBox::DoGetBestSize() const
 
 void wxCheckBox::SetValue(bool val)
 {
 
 void wxCheckBox::SetValue(bool val)
 {
+    SetBoolValue(val);
 }
 
 bool wxCheckBox::GetValue() const
 {
 }
 
 bool wxCheckBox::GetValue() const
 {
-    return false;
+    return GetBoolValue();
 }
 
 void wxCheckBox::Command(wxCommandEvent& event)
 }
 
 void wxCheckBox::Command(wxCommandEvent& event)