aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/outputparser_test.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-25 15:27:13 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-25 15:28:01 +0100
commit88f333267f466bf579a2d75f15f4f766a681735b (patch)
tree88b3b395b5ec0833febdb7ba57c33f9b19f5a165 /src/plugins/projectexplorer/outputparser_test.cpp
parent49311aa3621be7bd716a04bfadd195d4655849b2 (diff)
Fix Krazy code scanning tool warnings (QString, loops, spelling).
Diffstat (limited to 'src/plugins/projectexplorer/outputparser_test.cpp')
-rw-r--r--src/plugins/projectexplorer/outputparser_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/outputparser_test.cpp b/src/plugins/projectexplorer/outputparser_test.cpp
index 19e85c970c..9bbf21937d 100644
--- a/src/plugins/projectexplorer/outputparser_test.cpp
+++ b/src/plugins/projectexplorer/outputparser_test.cpp
@@ -171,10 +171,10 @@ void OutputParserTester::taskAdded(const ProjectExplorer::Task &task)
void OutputParserTester::reset()
{
- m_receivedStdErrChildLine = QString();
- m_receivedStdOutChildLine = QString();
+ m_receivedStdErrChildLine.clear();
+ m_receivedStdOutChildLine.clear();
m_receivedTasks.clear();
- m_receivedOutput = QString();
+ m_receivedOutput.clear();
}
#endif