| 312 | } |
| 313 | |
| 314 | int TOCModel::rowCount(const QModelIndex &parent) const |
| 315 | { |
| 316 | TOCItem *item = parent.isValid() ? static_cast<TOCItem *>(parent.internalPointer()) : d->root; |
| 317 | return item->children.count(); |
| 318 | } |
| 319 | |
| 320 | static QModelIndex indexForIndex(const QModelIndex &oldModelIndex, QAbstractItemModel *newModel) |
| 321 | { |
no test coverage detected