| 20 | } |
| 21 | |
| 22 | int AppItemModel::rowCount(const QModelIndex &parent) const |
| 23 | { |
| 24 | Q_UNUSED(parent) |
| 25 | assert(appMgr != nullptr); |
| 26 | return cache.count(); |
| 27 | } |
| 28 | |
| 29 | QVariant AppItemModel::data(const QModelIndex &index, int role) const |
| 30 | { |
no test coverage detected