blob: 01db8710bbd36b197dceb0505aebaed514a8dcab (
plain)
1
2
3
4
5
6
7
|
#include "cru/ui/components/Component.h"
#include "cru/ui/controls/Control.h"
namespace cru::ui::components {
void Component::OnPrepareDelete() { GetRootControl()->RemoveFromParent(); }
} // namespace cru::ui::components
|