| 40 | } |
| 41 | |
| 42 | void ToolTipManager::shutdown() |
| 43 | { |
| 44 | MYGUI_ASSERT(mIsInitialise, getClassTypeName() << " is not initialised"); |
| 45 | MYGUI_LOG(Info, "* Shutdown: " << getClassTypeName()); |
| 46 | |
| 47 | WidgetManager::getInstance().unregisterUnlinker(this); |
| 48 | Gui::getInstance().eventFrameStart -= newDelegate(this, &ToolTipManager::notifyEventFrameStart); |
| 49 | |
| 50 | MYGUI_LOG(Info, getClassTypeName() << " successfully shutdown"); |
| 51 | mIsInitialise = false; |
| 52 | } |
| 53 | |
| 54 | void ToolTipManager::notifyEventFrameStart(float _time) |
| 55 | { |
nothing calls this directly
no test coverage detected