| 64 | } |
| 65 | |
| 66 | void TestState::commandQuit(const MyGUI::UString& _commandName, bool& _result) |
| 67 | { |
| 68 | if (MessageBoxManager::getInstance().hasAny()) |
| 69 | return; |
| 70 | |
| 71 | if (!StateManager::getInstance().getStateActivate(this)) |
| 72 | return; |
| 73 | |
| 74 | StateManager::getInstance().stateEvent("TestState", "Exit"); |
| 75 | |
| 76 | _result = true; |
| 77 | } |
| 78 | |
| 79 | void TestState::deleteTestLayout() |
| 80 | { |
nothing calls this directly
no test coverage detected