| 20 | } |
| 21 | |
| 22 | void EditorWidgets::initialise() |
| 23 | { |
| 24 | mWidgetsChanged = true; |
| 25 | |
| 26 | MyGUI::ResourceManager::getInstance().registerLoadXmlDelegate("IgnoreParameters") = |
| 27 | MyGUI::newDelegate(this, &EditorWidgets::loadIgnoreParameters); |
| 28 | MyGUI::ResourceManager::getInstance().registerLoadXmlDelegate("SkinReplace") = |
| 29 | MyGUI::newDelegate(this, &EditorWidgets::loadSkinReplace); |
| 30 | |
| 31 | MyGUI::Gui::getInstance().eventFrameStart += MyGUI::newDelegate(this, &EditorWidgets::notifyFrameStarted); |
| 32 | MyGUI::WidgetManager::getInstance().registerUnlinker(this); |
| 33 | } |
| 34 | |
| 35 | void EditorWidgets::shutdown() |
| 36 | { |
nothing calls this directly
no test coverage detected