aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/outputparser_test.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2011-06-01 09:17:23 +0000
committerTobias Hunger <tobias.hunger@nokia.com>2011-06-01 11:18:57 +0200
commit7ccfe19deb6cafcff05ce8e729bafb189a15ddf7 (patch)
tree83e778af8b38a47b07890b75992f5a4ce00b94ae /src/plugins/projectexplorer/outputparser_test.cpp
parent794f29670129f428992e15d18146a083dc9fa4fd (diff)
outputparser: Fix overriding a virtual method
Change-Id: I2e0f2525e674e1b1d6e337d211adb16586478518 Reviewed-on: http://codereview.qt.nokia.com/300 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
Diffstat (limited to 'src/plugins/projectexplorer/outputparser_test.cpp')
-rw-r--r--src/plugins/projectexplorer/outputparser_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/outputparser_test.cpp b/src/plugins/projectexplorer/outputparser_test.cpp
index a6b273ae66..0758c92e2b 100644
--- a/src/plugins/projectexplorer/outputparser_test.cpp
+++ b/src/plugins/projectexplorer/outputparser_test.cpp
@@ -153,9 +153,9 @@ void OutputParserTester::appendOutputParser(IOutputParser *parser)
parser->appendOutputParser(this);
}
-void OutputParserTester::outputAdded(const QString &line, const QTextCharFormat &textCharFormat)
+void OutputParserTester::outputAdded(const QString &line, ProjectExplorer::BuildStep::OutputFormat format)
{
- Q_UNUSED(textCharFormat);
+ Q_UNUSED(format);
if (!m_receivedOutput.isEmpty())
m_receivedOutput.append(QChar('\n'));
m_receivedOutput.append(line);