| 37 | } |
| 38 | |
| 39 | bool DataListBaseControl::checkCommand(bool _result) |
| 40 | { |
| 41 | if (_result) |
| 42 | return false; |
| 43 | |
| 44 | if (DialogManager::getInstance().getAnyDialog()) |
| 45 | return false; |
| 46 | |
| 47 | if (MessageBoxManager::getInstance().hasAny()) |
| 48 | return false; |
| 49 | |
| 50 | return true; |
| 51 | } |
| 52 | |
| 53 | void DataListBaseControl::commandCreateData(const MyGUI::UString& _commandName, bool& _result) |
| 54 | { |
nothing calls this directly
no test coverage detected