| 444 | } |
| 445 | |
| 446 | QString TOCModel::externalFileNameForIndex(const QModelIndex &index) const |
| 447 | { |
| 448 | if (!index.isValid()) { |
| 449 | return QString(); |
| 450 | } |
| 451 | |
| 452 | const TOCItem *item = static_cast<TOCItem *>(index.internalPointer()); |
| 453 | return item->extFileName; |
| 454 | } |
| 455 | |
| 456 | Okular::DocumentViewport TOCModel::viewportForIndex(const QModelIndex &index) const |
| 457 | { |
no test coverage detected