| 49 | |
| 50 | |
| 51 | ExternalProcess::RETURNSTATE ExternalProcess::run(const QString& exe, const QStringList& args, const QString& working_dir, const bool verbose, IO_MODE io_mode) |
| 52 | { |
| 53 | String error_msg; |
| 54 | return run(exe, args, working_dir, verbose, error_msg, io_mode); |
| 55 | } |
| 56 | |
| 57 | ExternalProcess::RETURNSTATE ExternalProcess::run(const QString& exe, const QStringList& args, const QString& working_dir, const bool verbose, String& error_msg, IO_MODE io_mode) |
| 58 | { |
nothing calls this directly
no test coverage detected