| 181 | } |
| 182 | |
| 183 | void MacroConditionRunEdit::UpdateEntryData() |
| 184 | { |
| 185 | if (!_entryData) { |
| 186 | return; |
| 187 | } |
| 188 | _procConfig->SetProcessConfig(_entryData->_procConfig); |
| 189 | _timeout->SetDuration(_entryData->_timeout); |
| 190 | _checkExitCode->setChecked(_entryData->_checkExitCode); |
| 191 | _exitCode->setValue(_entryData->_exitCodeToCheck); |
| 192 | } |
| 193 | |
| 194 | void MacroConditionRunEdit::TimeoutChanged(const Duration &dur) |
| 195 | { |
nothing calls this directly
no test coverage detected