| 36 | } |
| 37 | |
| 38 | void LanguageManager::shutdown() |
| 39 | { |
| 40 | MYGUI_ASSERT(mIsInitialise, getClassTypeName() << " is not initialised"); |
| 41 | MYGUI_LOG(Info, "* Shutdown: " << getClassTypeName()); |
| 42 | |
| 43 | ResourceManager::getInstance().unregisterLoadXmlDelegate(mXmlLanguageTagName); |
| 44 | |
| 45 | MYGUI_LOG(Info, getClassTypeName() << " successfully shutdown"); |
| 46 | mIsInitialise = false; |
| 47 | } |
| 48 | |
| 49 | void LanguageManager::_load(xml::ElementPtr _node, std::string_view /*_file*/, Version _version) |
| 50 | { |
nothing calls this directly
no test coverage detected