forked from qt-creator/qt-creator
Android: Use QRegularExpression instead of QRegExp
Task-number: QTCREATORBUG-24098 Change-Id: Ic19bd73dd2bac39b393bf87c4567193631b57c80 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user