| 431 | } |
| 432 | |
| 433 | bool |
| 434 | App::saveProjectAs(const QString& filename) |
| 435 | { |
| 436 | std::string outFile = filename.toStdString(); |
| 437 | std::map<std::string, std::string> env; |
| 438 | getInternalApp()->getProject()->getEnvironmentVariables(env); |
| 439 | Project::expandVariable(env, outFile); |
| 440 | |
| 441 | return getInternalApp()->saveAs(outFile); |
| 442 | } |
| 443 | |
| 444 | App* |
| 445 | App::loadProject(const QString& filename) |
no test coverage detected