Header cleanup in QML/JS and project manager.

Change-Id: I40b41a3ef6189a99272e345e3251680edccecca0
Reviewed-on: http://codereview.qt.nokia.com/3215
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
Friedemann Kleint
2011-08-18 16:46:26 +02:00
parent ce633d57fb
commit 4c116bbda6
4 changed files with 13 additions and 16 deletions

View File

@@ -37,6 +37,8 @@
#include "qmlprojectrunconfiguration.h"
#include "qmlprojecttarget.h"
#include "qmlprojectconstants.h"
#include "qmlprojectnodes.h"
#include "qmlprojectmanager.h"
#include <coreplugin/icore.h>
#include <coreplugin/messagemanager.h>
@@ -256,7 +258,7 @@ Core::IFile *QmlProject::file() const
return m_file;
}
Internal::Manager *QmlProject::projectManager() const
ProjectExplorer::IProjectManager *QmlProject::projectManager() const
{
return m_manager;
}
@@ -276,7 +278,7 @@ Internal::QmlProjectTarget *QmlProject::activeTarget() const
return static_cast<Internal::QmlProjectTarget *>(Project::activeTarget());
}
Internal::QmlProjectNode *QmlProject::rootProjectNode() const
ProjectExplorer::ProjectNode *QmlProject::rootProjectNode() const
{
return m_rootNode;
}