If it's the parent, how do I get the window being added/removed so I can do a Window::getUserData() ?
Code: Select all
bool clsGUIEquipShip::eventChildRemoved(const CEGUI::EventArgs& e)
{
const CEGUI::WindowEventArgs &mEA = static_cast<const CEGUI::WindowEventArgs&>(e);
if ( !mEA.window ) return true;
...
}
What is mEA.window ?
