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.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/downloadlist.h') diff --git a/src/downloadlist.h b/src/downloadlist.h index c40bbac5..2171c013 100644 --- a/src/downloadlist.h +++ b/src/downloadlist.h @@ -85,7 +85,9 @@ public: **/ virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; - bool lessThan(const QModelIndex &left, const QModelIndex &right); + // used in DownloadsTab as the sorting predicate for the filter widget + // + bool lessThanPredicate(const QModelIndex &left, const QModelIndex &right); public slots: -- cgit v1.3.1