From 9b3e91b53e769aec2622eb79509945c09fca8897 Mon Sep 17 00:00:00 2001 From: isanae <14251494+isanae@users.noreply.github.com> Date: Mon, 28 Dec 2020 06:01:43 -0500 Subject: renamed DownloadList::lessThan to lessThanPredicate and added a comment that it's used with the filter widget --- src/downloadlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/downloadlist.cpp') diff --git a/src/downloadlist.cpp b/src/downloadlist.cpp index 3cfc1fea..a5c284e6 100644 --- a/src/downloadlist.cpp +++ b/src/downloadlist.cpp @@ -209,7 +209,7 @@ void DownloadList::update(int row) log::error("invalid row {} in download list, update failed", row); } -bool DownloadList::lessThan(const QModelIndex &left, const QModelIndex &right) +bool DownloadList::lessThanPredicate(const QModelIndex &left, const QModelIndex &right) { int leftIndex = left.row(); int rightIndex = right.row(); -- cgit v1.3.1