aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/widgets
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-05-02 19:48:37 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2022-07-10 12:17:52 +0200
commitff2cd50bfaeaab89ab830f1223c1e3649642dfa3 (patch)
tree7ba32b95bfe3fbaa18a37d271134b62172990a21 /launcher/ui/widgets
parent984692dc629ca3712d482b174a67557dd9e635a8 (diff)
downloadPrismLauncher-ff2cd50bfaeaab89ab830f1223c1e3649642dfa3.tar.gz
PrismLauncher-ff2cd50bfaeaab89ab830f1223c1e3649642dfa3.tar.bz2
PrismLauncher-ff2cd50bfaeaab89ab830f1223c1e3649642dfa3.zip
refactor: replace QRegExp with QRegularExpression
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/ui/widgets')
-rw-r--r--launcher/ui/widgets/PageContainer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/widgets/PageContainer.cpp b/launcher/ui/widgets/PageContainer.cpp
index ed8df460..419ccb66 100644
--- a/launcher/ui/widgets/PageContainer.cpp
+++ b/launcher/ui/widgets/PageContainer.cpp
@@ -66,7 +66,7 @@ public:
protected:
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
{
- const QString pattern = filterRegExp().pattern();
+ const QString pattern = filterRegularExpression().pattern();
const auto model = static_cast<PageModel *>(sourceModel());
const auto page = model->pages().at(sourceRow);
if (!page->shouldDisplay())