diff options
Diffstat (limited to 'include/cru/ui/style')
-rw-r--r-- | include/cru/ui/style/Condition.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/cru/ui/style/Condition.h b/include/cru/ui/style/Condition.h index 446e5bc0..b45c0e07 100644 --- a/include/cru/ui/style/Condition.h +++ b/include/cru/ui/style/Condition.h @@ -150,6 +150,8 @@ class CRU_UI_API CheckedCondition : public Condition { return new CheckedCondition(checked_); } + bool IsChecked() const { return checked_; } + private: bool checked_; }; |