From 3b875091c445b7465b9bd044914318989a94d2ad Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Fri, 21 Nov 2025 21:43:42 +0800 Subject: Clean codes. Remove member function const. --- include/cru/ui/controls/ICheckableControl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/cru/ui/controls/ICheckableControl.h') 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* CheckedChangeEvent() = 0; }; -- cgit v1.2.3