| 420 | } |
| 421 | |
| 422 | bool |
| 423 | App::saveProject(const QString& filename) |
| 424 | { |
| 425 | std::string outFile = filename.toStdString(); |
| 426 | std::map<std::string, std::string> env; |
| 427 | getInternalApp()->getProject()->getEnvironmentVariables(env); |
| 428 | Project::expandVariable(env, outFile); |
| 429 | |
| 430 | return getInternalApp()->save(outFile); |
| 431 | } |
| 432 | |
| 433 | bool |
| 434 | App::saveProjectAs(const QString& filename) |
nothing calls this directly
no test coverage detected