aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/controls/ICheckableControl.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/controls/ICheckableControl.h')
-rw-r--r--include/cru/ui/controls/ICheckableControl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cru/ui/controls/ICheckableControl.h b/include/cru/ui/controls/ICheckableControl.h
index 7a6d7b8e..b58a3f8c 100644
--- a/include/cru/ui/controls/ICheckableControl.h
+++ b/include/cru/ui/controls/ICheckableControl.h
@@ -4,7 +4,7 @@
namespace cru::ui::controls {
struct CRU_UI_API ICheckableControl : virtual Interface {
- virtual bool IsChecked() const = 0;
+ virtual bool IsChecked() = 0;
virtual void SetChecked(bool checked) = 0;
virtual IEvent<bool>* CheckedChangeEvent() = 0;
};