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

@@ -70,9 +70,9 @@ void GnuMakeParser::removeDirectory(const QString &dir)
m_directories.removeAll(dir);
}
void GnuMakeParser::taskAdded(const ProjectExplorer::TaskWindow::Task &task)
void GnuMakeParser::taskAdded(const ProjectExplorer::Task &task)
{
ProjectExplorer::TaskWindow::Task editable(task);
ProjectExplorer::Task editable(task);
QString filePath(QDir::cleanPath(task.file.trimmed()));
if (!filePath.isEmpty() && !QDir::isAbsolutePath(filePath)) {