From 1ce8866e5b88da6cc4b7cd4d3440f7d70c7be5db Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Sun, 16 Nov 2025 17:14:20 +0800 Subject: Remove SelfResolvable. --- include/cru/ui/components/Component.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'include/cru/ui/components/Component.h') diff --git a/include/cru/ui/components/Component.h b/include/cru/ui/components/Component.h index d44e6728..627e2d3c 100644 --- a/include/cru/ui/components/Component.h +++ b/include/cru/ui/components/Component.h @@ -1,7 +1,6 @@ #pragma once #include "../Base.h" #include "../DeleteLater.h" -#include "cru/base/SelfResolvable.h" namespace cru::ui::components { /** @@ -9,9 +8,7 @@ namespace cru::ui::components { * \remarks Component should respect children's Component::IsDeleteByParent * value and decide whether to delete it. */ -class CRU_UI_API Component : public Object, - public SelfResolvable, - public DeleteLaterImpl { +class CRU_UI_API Component : public Object, public DeleteLaterImpl { public: Component() = default; ~Component() = default; -- cgit v1.2.3