| 1205 | } |
| 1206 | |
| 1207 | QString PackProfile::getComponentVersion(const QString& uid) const |
| 1208 | { |
| 1209 | const auto iter = d->componentIndex.find(uid); |
| 1210 | if (iter != d->componentIndex.end()) |
| 1211 | { |
| 1212 | return (*iter)->getVersion(); |
| 1213 | } |
| 1214 | return QString(); |
| 1215 | } |
| 1216 | |
| 1217 | void PackProfile::disableInteraction(bool disable) |
| 1218 | { |
no test coverage detected