diff options
| author | Ahmad Samir <[email protected]> | 2019-12-24 17:15:44 +0200 |
|---|---|---|
| committer | Ahmad Samir <[email protected]> | 2020-05-06 11:37:38 +0200 |
| commit | e3c03e466ea53e575752154cde4e24caea118471 (patch) | |
| tree | c939719355c672406ad1e0df7fcff15bd947afa6 /src/dolphinpart.cpp | |
| parent | 37deaaef2c39a4c4b410cd0313a55a4072d2b2ff (diff) | |
Port QRegExp to QRegularExpression
Summary:
Port QRegExp::exactMatch() with QRegularExpression::anchoredPattern().
Port QRegExp::Wildcard with QRegularExpression::wildcardToRegularExpression().
Note that QRegularExpression::wildcardToRegularExpression() returns an anchored
pattern.
Test Plan:
Using the filter bar in dolphin works as before.
All unit tests pass, except:
- kfileitemmodeltest (which is unrelated AFAICS); it fails on master too
- placesitemmodeltest, which fails on master too
Reviewers: #dolphin, elvisangelaccio, meven
Reviewed By: #dolphin, elvisangelaccio
Subscribers: kfm-devel
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D26215
Diffstat (limited to 'src/dolphinpart.cpp')
| -rw-r--r-- | src/dolphinpart.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index 0c41b2bec..12c361011 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -54,6 +54,7 @@ #include <QInputDialog> #include <QKeyEvent> #include <QMenu> +#include <QRegularExpression> #include <QStandardPaths> #include <QTextDocument> @@ -507,7 +508,7 @@ void DolphinPart::openSelectionDialog(const QString& title, const QString& text, const QString pattern = QInputDialog::getText(m_view, title, text, QLineEdit::Normal, QStringLiteral("*"), &okClicked); if (okClicked && !pattern.isEmpty()) { - QRegExp patternRegExp(pattern, Qt::CaseSensitive, QRegExp::Wildcard); + const QRegularExpression patternRegExp(QRegularExpression::wildcardToRegularExpression(pattern)); m_view->selectItems(patternRegExp, selectItems); } } |
