mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 18:09:59 +03:00
Reformat, Rename, Redo
This commit is contained in:
parent
c47933d95c
commit
3fb7a0faf0
13 changed files with 297 additions and 229 deletions
|
|
@ -1,21 +0,0 @@
|
|||
#include "CategorizedProxyModel.h"
|
||||
|
||||
#include "CategorizedView.h"
|
||||
|
||||
CategorizedProxyModel::CategorizedProxyModel(QObject *parent)
|
||||
: QSortFilterProxyModel(parent)
|
||||
{
|
||||
}
|
||||
bool CategorizedProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
|
||||
{
|
||||
const QString leftCategory = left.data(CategorizedViewRoles::CategoryRole).toString();
|
||||
const QString rightCategory = right.data(CategorizedViewRoles::CategoryRole).toString();
|
||||
if (leftCategory == rightCategory)
|
||||
{
|
||||
return left.row() < right.row();
|
||||
}
|
||||
else
|
||||
{
|
||||
return leftCategory < rightCategory;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue