Build Linux version with Qt 5.15.1 in CentOS 7 docker.

This commit is contained in:
John Preston
2020-11-04 18:50:17 +03:00
parent 80c4ecb9bf
commit 74d2313784
47 changed files with 131 additions and 168 deletions

View File

@@ -72,7 +72,7 @@ public:
}
template <typename Predicate>
void sortItems(Predicate predicate) {
qSort(_items.begin(), _items.end(), std::move(predicate));
std::sort(_items.begin(), _items.end(), std::move(predicate));
}
void setPreloadMoreCallback(Fn<void()> callback) {