| 32 | } |
| 33 | |
| 34 | void SourceInteractionStepList::UpdateStep(int row, |
| 35 | const SourceInteractionStep &step) |
| 36 | { |
| 37 | if (row < 0 || row >= (int)_steps.size()) { |
| 38 | return; |
| 39 | } |
| 40 | _steps[row] = step; |
| 41 | _list->item(row)->setText(QString::fromStdString(step.ToString())); |
| 42 | } |
| 43 | |
| 44 | void SourceInteractionStepList::Add() |
| 45 | { |
no test coverage detected