QbsPM:QmakePM: Replace QRegExp by QRegularExpression

Task-number: QTCREATORBUG-24098
Change-Id: If561553a6030f8eaedbafbc1b4531a6b63c4aa36
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Christian Stenger
2020-07-14 11:20:22 +02:00
parent 9fa1286faf
commit 9783761df3
6 changed files with 27 additions and 25 deletions

View File

@@ -29,7 +29,7 @@
#include <projectexplorer/ioutputparser.h>
#include <QRegExp>
#include <QRegularExpression>
namespace QmakeProjectManager {
@@ -43,7 +43,7 @@ public:
private:
Result handleLine(const QString &line, Utils::OutputFormat type) override;
QRegExp m_error;
const QRegularExpression m_error;
};
} // namespace QmakeProjectManager