| 211 | } |
| 212 | |
| 213 | bool SortingProxyModel::isColumnSortable( const size_t& columnIndex ) const { |
| 214 | return source().isColumnSortable( columnIndex ); |
| 215 | } |
| 216 | |
| 217 | bool SortingProxyModel::lessThan( const ModelIndex& index1, const ModelIndex& index2 ) const { |
| 218 | auto data1 = mSource->data( index1, mSortRole ); |