| 44 | } |
| 45 | |
| 46 | size_t SortingProxyModel::rowCount( const ModelIndex& index ) const { |
| 47 | auto targetIndex = mapToSource( index ); |
| 48 | return source().rowCount( targetIndex ); |
| 49 | } |
| 50 | |
| 51 | size_t SortingProxyModel::columnCount( const ModelIndex& index ) const { |
| 52 | auto targetIndex = mapToSource( index ); |
no outgoing calls
no test coverage detected