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