| 380 | } |
| 381 | |
| 382 | int AccessibleInstanceView::childCount() const |
| 383 | { |
| 384 | if (!view()->model()) { |
| 385 | return 0; |
| 386 | } |
| 387 | return (view()->model()->rowCount()) * (view()->model()->columnCount()); |
| 388 | } |
| 389 | |
| 390 | int AccessibleInstanceView::indexOfChild(const QAccessibleInterface *iface) const |
| 391 | { |
nothing calls this directly
no test coverage detected