diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-02 19:48:37 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-10 12:17:52 +0200 |
commit | ff2cd50bfaeaab89ab830f1223c1e3649642dfa3 (patch) | |
tree | 7ba32b95bfe3fbaa18a37d271134b62172990a21 /launcher/ui/widgets | |
parent | 984692dc629ca3712d482b174a67557dd9e635a8 (diff) | |
download | PrismLauncher-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.cpp | 2 |
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()) |