aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/outputparser_test.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2020-04-15 14:59:51 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2020-04-16 10:40:33 +0000
commit6f32538c5da7cfa1a6804336dcb4db0e4f205c28 (patch)
treeffa5f04f8e0d6a760e07e8091597a4b8e8f7fe66 /src/plugins/projectexplorer/outputparser_test.cpp
parentd04597f2aaab7966d1b94864f1292135959680ae (diff)
ProjectExplorer: Split up the IOutputParser class
For symmetry with Utils::OutputFormatter. Task-number: QTCREATORBUG-22665 Change-Id: I148fed69dba042ad3ef26e080829c31cd3f357fd Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/outputparser_test.cpp')
-rw-r--r--src/plugins/projectexplorer/outputparser_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/outputparser_test.cpp b/src/plugins/projectexplorer/outputparser_test.cpp
index 5ae0c46aed..8caec11242 100644
--- a/src/plugins/projectexplorer/outputparser_test.cpp
+++ b/src/plugins/projectexplorer/outputparser_test.cpp
@@ -102,7 +102,7 @@ TestTerminator::TestTerminator(OutputParserTester *t) :
m_tester(t)
{ }
-IOutputParser::Status TestTerminator::doHandleLine(const QString &line, Utils::OutputFormat type)
+OutputTaskParser::Status TestTerminator::handleLine(const QString &line, Utils::OutputFormat type)
{
QTC_CHECK(line.endsWith('\n'));
if (type == Utils::StdOutFormat)