From 3fba46495f4e0b27d520a3e73bc132e870249f5b Mon Sep 17 00:00:00 2001 From: Jacopo De Simoi Date: Wed, 16 Jun 2021 07:57:36 -0400 Subject: [PATCH] Fix compilation with new Qt --- src/folder/entitycollectionorderproxymodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/folder/entitycollectionorderproxymodel.cpp b/src/folder/entitycollectionorderproxymodel.cpp index f0c650b..d94a175 100644 --- a/src/folder/entitycollectionorderproxymodel.cpp +++ b/src/folder/entitycollectionorderproxymodel.cpp @@ -144,7 +144,7 @@ bool EntityCollectionOrderProxyModel::lessThan(const QModelIndex &left, const QM bool EntityCollectionOrderProxyModel::filterAcceptsRow(int source_row, const QModelIndex &parent) const { - QStringList words = filterRegExp().pattern().split(' ',QString::SkipEmptyParts); + QStringList words = filterRegExp().pattern().split(' ',Qt::SkipEmptyParts); if (words.count()>1) { // helm style bool accept = true;