Catch MyGUI exceptions in the FontLoader destructor

pull/2917/head
Andrei Kortunov 5 years ago
parent 808c905e1f
commit 6357bc3dad

@ -165,7 +165,14 @@ namespace Gui
FontLoader::~FontLoader()
{
MyGUI::ResourceManager::getInstance().unregisterLoadXmlDelegate("Resource");
try
{
MyGUI::ResourceManager::getInstance().unregisterLoadXmlDelegate("Resource");
}
catch(const MyGUI::Exception& e)
{
Log(Debug::Error) << "Error in the FontLoader destructor: " << e.what();
}
for (std::vector<MyGUI::ITexture*>::iterator it = mTextures.begin(); it != mTextures.end(); ++it)
delete *it;

Loading…
Cancel
Save