| 989 | } |
| 990 | |
| 991 | QString PackProfile::getComponentVersion(const QString& uid) const |
| 992 | { |
| 993 | const auto iter = d->componentIndex.find(uid); |
| 994 | if (iter != d->componentIndex.end()) |
| 995 | { |
| 996 | return (*iter)->getVersion(); |
| 997 | } |
| 998 | return QString(); |
| 999 | } |
| 1000 | |
| 1001 | void PackProfile::disableInteraction(bool disable) |
| 1002 | { |
no test coverage detected