| 646 | } |
| 647 | |
| 648 | int |
| 649 | TableModel::columnCount(const QModelIndex &parent) const |
| 650 | { |
| 651 | return parent.isValid() ? 0 : (int)_imp->horizontalHeaderItems.size(); |
| 652 | } |
| 653 | |
| 654 | QVariant |
| 655 | TableModel::data(const QModelIndex &index, |
no test coverage detected