| 456 | } |
| 457 | |
| 458 | void Snapshots::RandomizeTargets() |
| 459 | { |
| 460 | for (int i = 0; i < mSnapshotControls.size(); ++i) |
| 461 | RandomizeControl(mSnapshotControls[i]); |
| 462 | for (int i = 0; i < mSnapshotModules.size(); ++i) |
| 463 | { |
| 464 | for (auto* control : mSnapshotModules[i]->GetUIControls()) |
| 465 | RandomizeControl(control); |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | void Snapshots::RandomizeControl(IUIControl* control) |
| 470 | { |
nothing calls this directly
no test coverage detected