Android: Use QRegularExpression instead of QRegExp

Task-number: QTCREATORBUG-24098
Change-Id: Ic19bd73dd2bac39b393bf87c4567193631b57c80
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2020-06-16 07:48:09 +02:00
parent 555970eeb0
commit 4b1adeca7f
5 changed files with 14 additions and 12 deletions

View File

@@ -28,7 +28,7 @@
#include <projectexplorer/ioutputparser.h>
#include <utils/fileutils.h>
#include <QRegExp>
#include <QRegularExpression>
namespace Android {
namespace Internal {
@@ -47,7 +47,7 @@ public:
private:
Result handleLine(const QString &line, Utils::OutputFormat type) override;
QRegExp m_javaRegExp;
QRegularExpression m_javaRegExp;
QStringList m_fileList;
Utils::FilePath m_sourceDirectory;
Utils::FilePath m_buildDirectory;