blob: 2b54ce1bb7c8c63529d466fe38f70e91654e1c90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "CategorizedProxyModel.h"
#include "CategorizedView.h"
CategorizedProxyModel::CategorizedProxyModel(QObject *parent)
: QSortFilterProxyModel(parent)
{
}
bool CategorizedProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
{
return left.data(CategorizedView::CategoryRole).toString() < right.data(CategorizedView::CategoryRole).toString();
}
|