| 94 | } |
| 95 | |
| 96 | void TestState::commandQuit(const MyGUI::UString& _commandName, bool& _result) |
| 97 | { |
| 98 | if (MessageBoxManager::getInstance().hasAny()) |
| 99 | return; |
| 100 | |
| 101 | if (!StateManager::getInstance().getStateActivate(this)) |
| 102 | return; |
| 103 | |
| 104 | StateManager::getInstance().stateEvent("TestState", "Exit"); |
| 105 | |
| 106 | _result = true; |
| 107 | } |
| 108 | |
| 109 | void TestState::notifyEndDialogTest(Dialog* _sender, bool _result) |
| 110 | { |
nothing calls this directly
no test coverage detected