| 29 | } |
| 30 | |
| 31 | int AccessibleInstanceView::logicalIndex(const QModelIndex &index) const |
| 32 | { |
| 33 | if (!view()->model() || !index.isValid()) |
| 34 | return -1; |
| 35 | return index.row() * (index.model()->columnCount()) + index.column(); |
| 36 | } |
| 37 | |
| 38 | AccessibleInstanceView::AccessibleInstanceView(QWidget *w) |
| 39 | : QAccessibleObject(w) |
nothing calls this directly
no test coverage detected