1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 04:53:52 +00:00

Fix infinite recursion on shutdown caused by incorrect onWidgetDestroy listener

This commit is contained in:
scrawl 2013-03-13 23:17:25 +01:00
parent e4717d7c92
commit c4a42f2e1f
2 changed files with 0 additions and 12 deletions

View file

@ -749,11 +749,6 @@ void HBox::onWidgetCreated(MyGUI::Widget* _widget)
align(); align();
} }
void HBox::onWidgetDestroy(MyGUI::Widget* _widget)
{
align();
}
MyGUI::IntSize HBox::getRequestedSize () MyGUI::IntSize HBox::getRequestedSize ()
{ {
MyGUI::IntSize size(0,0); MyGUI::IntSize size(0,0);
@ -905,8 +900,3 @@ void VBox::onWidgetCreated(MyGUI::Widget* _widget)
{ {
align(); align();
} }
void VBox::onWidgetDestroy(MyGUI::Widget* _widget)
{
align();
}

View file

@ -403,7 +403,6 @@ namespace MWGui
virtual void setPropertyOverride(const std::string& _key, const std::string& _value); virtual void setPropertyOverride(const std::string& _key, const std::string& _value);
virtual void onWidgetCreated(MyGUI::Widget* _widget); virtual void onWidgetCreated(MyGUI::Widget* _widget);
virtual void onWidgetDestroy(MyGUI::Widget* _widget);
}; };
class VBox : public Box, public MyGUI::Widget class VBox : public Box, public MyGUI::Widget
@ -421,7 +420,6 @@ namespace MWGui
virtual void setPropertyOverride(const std::string& _key, const std::string& _value); virtual void setPropertyOverride(const std::string& _key, const std::string& _value);
virtual void onWidgetCreated(MyGUI::Widget* _widget); virtual void onWidgetCreated(MyGUI::Widget* _widget);
virtual void onWidgetDestroy(MyGUI::Widget* _widget);
}; };
} }
} }