diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-05-14 23:42:11 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-01-28 02:01:58 +0100 |
| commit | 277aa36973cc870c2ea8dcbaba1428cd2abc4fb5 (patch) | |
| tree | b8acae859ab8b654a002f79bf5cf66a0f859b0e3 /src/wx/check_box.cc | |
| parent | 33ab595ca5f2272b4cd5660b3ef7e0ec717ee151 (diff) | |
Add set().
Diffstat (limited to 'src/wx/check_box.cc')
| -rw-r--r-- | src/wx/check_box.cc | 7 |
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); +} + |
