| 604 | } |
| 605 | |
| 606 | TableItem * |
| 607 | TableModel::horizontalHeaderItem(int section) |
| 608 | { |
| 609 | assert( section >= 0 && section < (int)_imp->horizontalHeaderItems.size() ); |
| 610 | |
| 611 | return _imp->horizontalHeaderItems[section]; |
| 612 | } |
| 613 | |
| 614 | void |
| 615 | TableModel::setRowCount(int rows) |
no test coverage detected