Move TaskWindow::Task out of the nesting to ProjectExplorer::

Since otherwise we can't forward declare it.
This commit is contained in:
dt
2010-03-12 13:53:00 +01:00
parent 4d8a264fb8
commit 7c11c4d8b0
22 changed files with 293 additions and 292 deletions

View File

@@ -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);
}