diff options
| author | Yuqian Yang <crupest@crupest.life> | 2025-11-16 17:14:20 +0800 |
|---|---|---|
| committer | Yuqian Yang <crupest@crupest.life> | 2025-11-16 17:14:20 +0800 |
| commit | 1ce8866e5b88da6cc4b7cd4d3440f7d70c7be5db (patch) | |
| tree | c43f76eb308ed59570e61ed647371cce5e68d32e /include/cru/ui/controls | |
| parent | 1ef4651c4002eb3a155bcd36fed1e5b6b63b1c80 (diff) | |
| download | cru-1ce8866e5b88da6cc4b7cd4d3440f7d70c7be5db.tar.gz cru-1ce8866e5b88da6cc4b7cd4d3440f7d70c7be5db.tar.bz2 cru-1ce8866e5b88da6cc4b7cd4d3440f7d70c7be5db.zip | |
Remove SelfResolvable.
Diffstat (limited to 'include/cru/ui/controls')
| -rw-r--r-- | include/cru/ui/controls/Control.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/cru/ui/controls/Control.h b/include/cru/ui/controls/Control.h index d70854fe..77f5f392 100644 --- a/include/cru/ui/controls/Control.h +++ b/include/cru/ui/controls/Control.h @@ -4,7 +4,6 @@ #include "../events/UiEvents.h" #include "../render/RenderObject.h" #include "../style/StyleRuleSet.h" -#include "cru/base/SelfResolvable.h" #include "cru/ui/render/MeasureRequirement.h" namespace cru::ui::controls { @@ -18,9 +17,7 @@ namespace cru::ui::controls { * - RemoveChild(Control* child) * The last two methods are totally for convenient control tree management. */ -class CRU_UI_API Control : public Object, - public SelfResolvable<Control>, - public DeleteLaterImpl { +class CRU_UI_API Control : public Object, public DeleteLaterImpl { friend class RootControl; CRU_DEFINE_CLASS_LOG_TAG("Control") |
