| 997 | } |
| 998 | |
| 999 | QString PackProfile::getComponentVersion(const QString& uid) const |
| 1000 | { |
| 1001 | const auto iter = d->componentIndex.find(uid); |
| 1002 | if (iter != d->componentIndex.end()) { |
| 1003 | return (*iter)->getVersion(); |
| 1004 | } |
| 1005 | return QString(); |
| 1006 | } |
| 1007 | |
| 1008 | void PackProfile::disableInteraction(bool disable) |
| 1009 | { |
no test coverage detected