Browse Source

Simplify sorting code.

adaptive-webui-19844
sledgehammer999 7 years ago
parent
commit
99abc21dab
No known key found for this signature in database
GPG Key ID: 6E4A2D025B7CC9A2
  1. 4
      src/gui/categoryfilterproxymodel.cpp
  2. 6
      src/gui/search/searchsortmodel.cpp
  3. 3
      src/gui/tagfilterproxymodel.cpp
  4. 3
      src/gui/transferlistsortmodel.cpp

4
src/gui/categoryfilterproxymodel.cpp

@ -54,8 +54,6 @@ bool CategoryFilterProxyModel::lessThan(const QModelIndex &left, const QModelInd @@ -54,8 +54,6 @@ bool CategoryFilterProxyModel::lessThan(const QModelIndex &left, const QModelInd
int result = Utils::String::naturalCompare(left.data().toString(), right.data().toString()
, Qt::CaseInsensitive);
if (result != 0)
return (result < 0);
return (left < right);
return (result < 0);
}

6
src/gui/search/searchsortmodel.cpp

@ -113,17 +113,11 @@ bool SearchSortModel::lessThan(const QModelIndex &left, const QModelIndex &right @@ -113,17 +113,11 @@ bool SearchSortModel::lessThan(const QModelIndex &left, const QModelIndex &right
const QString strL = left.data().toString();
const QString strR = right.data().toString();
const int result = Utils::String::naturalCompare(strL, strR, Qt::CaseInsensitive);
if (result != 0)
return (result < 0);
return (left < right);
}
break;
default:
if (left.data() != right.data())
return base::lessThan(left, right);
return (left < right);
};
}

3
src/gui/tagfilterproxymodel.cpp

@ -54,8 +54,5 @@ bool TagFilterProxyModel::lessThan(const QModelIndex &left, const QModelIndex &r @@ -54,8 +54,5 @@ bool TagFilterProxyModel::lessThan(const QModelIndex &left, const QModelIndex &r
int result = Utils::String::naturalCompare(left.data().toString(), right.data().toString()
, Qt::CaseInsensitive);
if (result != 0)
return (result < 0);
return (left < right);
}

3
src/gui/transferlistsortmodel.cpp

@ -95,10 +95,7 @@ bool TransferListSortModel::lessThan(const QModelIndex &left, const QModelIndex @@ -95,10 +95,7 @@ bool TransferListSortModel::lessThan(const QModelIndex &left, const QModelIndex
return lowerPositionThan(left, right);
const int result = Utils::String::naturalCompare(vL.toString(), vR.toString(), Qt::CaseInsensitive);
if (result != 0)
return (result < 0);
return (left < right);
}
case TorrentModel::TR_ADD_DATE:

Loading…
Cancel
Save