summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/ioutputparser.cpp
diff options
context:
space:
mode:
authordt <qtc-committer@nokia.com>2010-03-12 13:53:00 +0100
committerdt <qtc-committer@nokia.com>2010-03-12 15:00:15 +0100
commit7c11c4d8b07054a87bd59551f3209679371a8d23 (patch)
treefefc2b72492696b22128547ff26c0624164f1164 /src/plugins/projectexplorer/ioutputparser.cpp
parent4d8a264fb8f6ca57b7715394ed253f2e8f1e1936 (diff)
downloadqt-creator-7c11c4d8b07054a87bd59551f3209679371a8d23.tar.gz
Move TaskWindow::Task out of the nesting to ProjectExplorer::
Since otherwise we can't forward declare it.
Diffstat (limited to 'src/plugins/projectexplorer/ioutputparser.cpp')
-rw-r--r--src/plugins/projectexplorer/ioutputparser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/ioutputparser.cpp b/src/plugins/projectexplorer/ioutputparser.cpp
index b74836a091..2b43514bab 100644
--- a/src/plugins/projectexplorer/ioutputparser.cpp
+++ b/src/plugins/projectexplorer/ioutputparser.cpp
@@ -52,8 +52,8 @@ void IOutputParser::appendOutputParser(IOutputParser *parser)
m_parser = parser;
connect(parser, SIGNAL(addOutput(QString)),
this, SLOT(outputAdded(QString)));
- connect(parser, SIGNAL(addTask(ProjectExplorer::TaskWindow::Task)),
- this, SLOT(taskAdded(ProjectExplorer::TaskWindow::Task)));
+ connect(parser, SIGNAL(addTask(ProjectExplorer::Task)),
+ this, SLOT(taskAdded(ProjectExplorer::Task)));
}
IOutputParser *IOutputParser::takeOutputParserChain()
@@ -85,7 +85,7 @@ void IOutputParser::outputAdded(const QString &string)
emit addOutput(string);
}
-void IOutputParser::taskAdded(const ProjectExplorer::TaskWindow::Task &task)
+void IOutputParser::taskAdded(const ProjectExplorer::Task &task)
{
emit addTask(task);
}