| 19 | } |
| 20 | |
| 21 | void RecentAppsModel::insert(const QString &desktopFile, const int &index) |
| 22 | { |
| 23 | beginInsertRows(QModelIndex(), index, index); |
| 24 | m_list.insert(index, AppsDB::appInfo(desktopFile)); |
| 25 | endInsertRows(); |
| 26 | } |
| 27 | |
| 28 | int RecentAppsModel::rowCount(const QModelIndex &parent) const |
| 29 | { |
no outgoing calls
no test coverage detected