| 374 | } |
| 375 | |
| 376 | int AccessibleInstanceView::childCount() const |
| 377 | { |
| 378 | if (!view()->model()) { |
| 379 | return 0; |
| 380 | } |
| 381 | return (view()->model()->rowCount()) * (view()->model()->columnCount()); |
| 382 | } |
| 383 | |
| 384 | int AccessibleInstanceView::indexOfChild(const QAccessibleInterface* iface) const |
| 385 | { |
nothing calls this directly
no test coverage detected