| 149 | } |
| 150 | |
| 151 | QVariant KeyTreeModel::headerData(int section, Qt::Orientation orientation, |
| 152 | int role) const |
| 153 | { |
| 154 | Q_UNUSED(section) |
| 155 | if (orientation == Qt::Horizontal && role == Qt::DisplayRole) |
| 156 | return headerInfo; |
| 157 | |
| 158 | return QVariant(); |
| 159 | } |
| 160 | |
| 161 | QModelIndex KeyTreeModel::index(int row, int column, const QModelIndex &parent) const |
| 162 | { |
nothing calls this directly
no outgoing calls
no test coverage detected