| 400 | } |
| 401 | |
| 402 | void ProjectControl::setFileName(const MyGUI::UString& _filePath, const MyGUI::UString& _fileName) |
| 403 | { |
| 404 | mProjectName = _fileName; |
| 405 | mProjectPath = _filePath; |
| 406 | |
| 407 | SettingsManager::getInstance().setValue("Files/LastProjectName", mProjectName); |
| 408 | SettingsManager::getInstance().setValue("Files/LastProjectPath", mProjectPath); |
| 409 | |
| 410 | addUserTag("CurrentProjectName", mProjectName); |
| 411 | } |
| 412 | |
| 413 | void ProjectControl::updateCaption() |
| 414 | { |
nothing calls this directly
no test coverage detected