| 83 | } |
| 84 | |
| 85 | void TestState::command_Test(const MyGUI::UString& _commandName, bool& _result) |
| 86 | { |
| 87 | if (DialogManager::getInstance().getAnyDialog()) |
| 88 | return; |
| 89 | |
| 90 | if (MessageBoxManager::getInstance().hasAny()) |
| 91 | return; |
| 92 | |
| 93 | StateManager::getInstance().stateEvent("EditorState", "Test"); |
| 94 | |
| 95 | _result = true; |
| 96 | } |
| 97 | |
| 98 | } |
nothing calls this directly
no test coverage detected