diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-12-28 06:01:43 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-12-28 06:01:43 -0500 |
| commit | 9b3e91b53e769aec2622eb79509945c09fca8897 (patch) | |
| tree | 1f619884298e51bba99ec26bd41b8f2568119c01 /src/downloadlist.cpp | |
| parent | c2c0f7c98d4b61314c679e0fed7fac914f4f1284 (diff) | |
renamed DownloadList::lessThan to lessThanPredicate and added a comment that it's used with the filter widget
Diffstat (limited to 'src/downloadlist.cpp')
| -rw-r--r-- | src/downloadlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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();
|
