| 63 | return sourceModel()->columnCount(); |
| 64 | } |
| 65 | int columnCount(const QModelIndex &) const override |
| 66 | { |
| 67 | return sourceModel()->rowCount(); |
| 68 | } |
| 69 | QVariant data(const QModelIndex &ind, int role) const override |
| 70 | { |
| 71 | return sourceModel()->data(mapToSource(ind), role); |