MCPcopy Create free account
hub / github.com/MyGUI/mygui / _unlinkChildWidget

Method _unlinkChildWidget

MyGUIEngine/src/MyGUI_Widget.cpp:1111–1116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1109 }
1110
1111 void Widget::_unlinkChildWidget(Widget* _widget)
1112 {
1113 VectorWidgetPtr::iterator iter = std::remove(mWidgetChild.begin(), mWidgetChild.end(), _widget);
1114 MYGUI_ASSERT(iter != mWidgetChild.end(), "widget not found");
1115 mWidgetChild.erase(iter);
1116 }
1117
1118 void Widget::shutdownOverride()
1119 {

Callers 3

detachFromWidgetMethod · 0.45
attachToWidgetMethod · 0.45
setDepthMethod · 0.45

Calls 3

beginMethod · 0.45
endMethod · 0.45
eraseMethod · 0.45

Tested by

no test coverage detected