mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 03:28:41 -07:00
Add case-sensitive & case-insensitive natural sort helper function
Fix helper function not being thread-safe Use QBT_USES_QT5 define
This commit is contained in:
parent
d25430f377
commit
5906a4a2de
10 changed files with 118 additions and 94 deletions
|
@ -80,7 +80,7 @@ bool TransferListSortModel::lessThan(const QModelIndex &left, const QModelIndex
|
|||
if (!vL.isValid() || !vR.isValid() || (vL == vR))
|
||||
return lowerPositionThan(left, right);
|
||||
|
||||
return Utils::String::naturalCompare(vL.toString(), vR.toString());
|
||||
return Utils::String::naturalCompareCaseSensitive(vL.toString(), vR.toString());
|
||||
}
|
||||
|
||||
case TorrentModel::TR_ADD_DATE:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue