summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/ldparser.h
diff options
context:
space:
mode:
authorDaniel Teske <daniel.teske@digia.com>2014-09-22 16:16:25 +0200
committerDaniel Teske <daniel.teske@digia.com>2014-09-29 11:20:37 +0200
commitf39a86f70ea453df8ead15aea19b8775a066f3c7 (patch)
treef9ccccda037abfcc746d19575f59805083bfbdbf /src/plugins/projectexplorer/ldparser.h
parent2407c2976808255cfe7ca4ab83a50c723fde75cc (diff)
downloadqt-creator-f39a86f70ea453df8ead15aea19b8775a066f3c7.tar.gz
LdParser: Use QRegularExpression
Change-Id: I0c183894389d92178a469fe2980568b7517a153c Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/ldparser.h')
-rw-r--r--src/plugins/projectexplorer/ldparser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/ldparser.h b/src/plugins/projectexplorer/ldparser.h
index 6f9719d503..60107d57bd 100644
--- a/src/plugins/projectexplorer/ldparser.h
+++ b/src/plugins/projectexplorer/ldparser.h
@@ -32,7 +32,7 @@
#include "ioutputparser.h"
-#include <QRegExp>
+#include <QRegularExpression>
namespace ProjectExplorer {
@@ -45,8 +45,8 @@ public:
void stdError(const QString &line);
private:
- QRegExp m_regExpLinker;
- QRegExp m_regExpGccNames;
+ QRegularExpression m_regExpLinker;
+ QRegularExpression m_regExpGccNames;
};
} // namespace ProjectExplorer