MCPcopy Create free account
hub / github.com/MyGUI/mygui / shutdown

Method shutdown

MyGUIEngine/src/MyGUI_ToolTipManager.cpp:42–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 3

getClassTypeNameFunction · 0.85
newDelegateFunction · 0.85
unregisterUnlinkerMethod · 0.80

Tested by

no test coverage detected