| 27 | |
| 28 | |
| 29 | QVector<QString> lockedCheckSetSelectionIds(const CheckSetSelectionFileInfoLookup& checkSetSelectionFileInfoLookup) |
| 30 | { |
| 31 | QVector<QString> result; |
| 32 | |
| 33 | for (auto it = checkSetSelectionFileInfoLookup.constBegin(), end = checkSetSelectionFileInfoLookup.constEnd(); |
| 34 | it != end; ++it) { |
| 35 | if (it.value().isLocked()) { |
| 36 | result.append(it.key()); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | return result; |
| 41 | } |
| 42 | |
| 43 | void updateLockStatus(CheckSetSelectionFileInfoLookup& checkSetSelectionFileInfoLookup, |
| 44 | const QVector<QString>& lockedCheckSetSelectionIds, |
no test coverage detected