| 74 | } |
| 75 | |
| 76 | int rowCount(const QModelIndex& parent = QModelIndex()) const override |
| 77 | { |
| 78 | if (parent.isValid()) return 0; |
| 79 | return m_paths.count() + 1; |
| 80 | } |
| 81 | |
| 82 | QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override |
| 83 | { |
nothing calls this directly
no test coverage detected