CppCheck: Replace QRegExp by QRegularExpression

Task-number: QTCREATORBUG-24098
Change-Id: I7b9198f3762f5fa753b5be0e1c0a81abc7f94560
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2020-07-13 11:33:34 +02:00
parent 8b26bde438
commit feb873ca34
2 changed files with 5 additions and 3 deletions

View File

@@ -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;