| 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 |
nothing calls this directly
no test coverage detected