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

Method _unloadDelayDynLibs

MyGUIEngine/src/MyGUI_DynLibManager.cpp:93–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91 }
92
93 void DynLibManager::_unloadDelayDynLibs()
94 {
95 if (!mDelayDynLib.empty())
96 {
97 WidgetManager* manager = WidgetManager::getInstancePtr();
98 if (manager != nullptr)
99 manager->_deleteDelayWidgets();
100
101 for (auto& entry : mDelayDynLib)
102 {
103 entry->unload();
104 delete entry;
105 }
106 mDelayDynLib.clear();
107 }
108 }
109
110} // namespace MyGUI

Callers

nothing calls this directly

Calls 5

getInstancePtrFunction · 0.85
_deleteDelayWidgetsMethod · 0.80
emptyMethod · 0.45
unloadMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected