| 88 | } |
| 89 | |
| 90 | void DestroyChilds() |
| 91 | { |
| 92 | while (mChilds.Count > 0) |
| 93 | { |
| 94 | BaseWidget ^ child = mChilds[0]; |
| 95 | delete child; |
| 96 | child = nullptr; |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | BaseWidget ^ getMangedParent(MyGUI::Widget* _widget) |
| 101 | { |
no outgoing calls
no test coverage detected