| 579 | } |
| 580 | |
| 581 | void ProjectControl::notifyListSelectAccept(MyGUI::ListBox* _sender, size_t _index) |
| 582 | { |
| 583 | if (_index == MyGUI::ITEM_NONE) |
| 584 | return; |
| 585 | |
| 586 | MyGUI::UString data = |
| 587 | MyGUI::utility::toString(MyGUI::UString(common::concatenatePath(mProjectPath, mProjectName)), "|", _index); |
| 588 | CommandManager::getInstance().setCommandData(data); |
| 589 | CommandManager::getInstance().executeCommand("Command_FileDrop"); |
| 590 | } |
| 591 | |
| 592 | bool ProjectControl::isProjectItemOpen() |
| 593 | { |
nothing calls this directly
no test coverage detected