aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppcheck/cppchecktool.h
diff options
context:
space:
mode:
authorChristian Stenger <[email protected]>2020-07-13 11:33:34 +0200
committerChristian Stenger <[email protected]>2020-07-13 12:09:04 +0000
commitfeb873ca344c7acb12e407cd930a1163d7abc383 (patch)
tree79a84b02e4c490df95de829f00ab8b88dae6dd34 /src/plugins/cppcheck/cppchecktool.h
parent8b26bde4382140dc1281688337355a280d1090a7 (diff)
CppCheck: Replace QRegExp by QRegularExpression
Diffstat (limited to 'src/plugins/cppcheck/cppchecktool.h')
-rw-r--r--src/plugins/cppcheck/cppchecktool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppchecktool.h b/src/plugins/cppcheck/cppchecktool.h
index abce347fbf0..cc5f77d2183 100644
--- a/src/plugins/cppcheck/cppchecktool.h
+++ b/src/plugins/cppcheck/cppchecktool.h
@@ -84,7 +84,7 @@ private:
std::unique_ptr<CppcheckRunner> m_runner;
std::unique_ptr<QFutureInterface<void>> m_progress;
QHash<QString, QString> m_cachedAdditionalArguments;
- QVector<QRegExp> m_filters;
+ QVector<QRegularExpression> m_filters;
QRegularExpression m_progressRegexp;
QRegularExpression m_messageRegexp;
Utils::Id m_progressId;