summaryrefslogtreecommitdiff
path: root/src/wx/check_box.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/check_box.cc')
-rw-r--r--src/wx/check_box.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/wx/check_box.cc b/src/wx/check_box.cc
index baec651c1..c18ceba47 100644
--- a/src/wx/check_box.cc
+++ b/src/wx/check_box.cc
@@ -53,3 +53,10 @@ CheckBox::get() const
return GetValue();
}
+
+void
+CheckBox::set(bool state)
+{
+ SetValue(state);
+}
+