MCPcopy Create free account
hub / github.com/MyGUI/mygui / ~Control

Method ~Control

Tools/EditorFramework/Control.cpp:15–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13{
14
15 Control::~Control()
16 {
17 DeactivateControllers();
18
19 for (auto& controller : mControllers)
20 delete controller;
21 mControllers.clear();
22
23 for (auto& child : mChilds)
24 delete child;
25 mChilds.clear();
26 }
27
28 MyGUI::Widget* Control::getRoot()
29 {

Callers

nothing calls this directly

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected