| 181 | } |
| 182 | |
| 183 | int ItemModel::rowCount(const QModelIndex &parent) const |
| 184 | { |
| 185 | if (parent.isValid()) |
| 186 | return 0; |
| 187 | return displayItems.size(); |
| 188 | } |
| 189 | |
| 190 | int ItemModel::columnCount(const QModelIndex &parent) const |
| 191 | { |
no test coverage detected