| 177 | } |
| 178 | |
| 179 | void ProcessConfigEdit::SetProcessConfig(const ProcessConfig &conf) |
| 180 | { |
| 181 | _conf = conf; |
| 182 | _filePath->SetPath(conf._path); |
| 183 | _argList->SetStringList(conf._args); |
| 184 | _workingDirectory->SetPath(conf._workingDirectory); |
| 185 | ShowAdvancedSettings( |
| 186 | !_conf._args.empty() || |
| 187 | !_conf._workingDirectory.UnresolvedValue().empty()); |
| 188 | } |
| 189 | |
| 190 | void ProcessConfigEdit::PathChanged(const QString &text) |
| 191 | { |
no test coverage detected