Renamed the DUI editor to QML editor.

This commit is contained in:
Erik Verbruggen
2009-09-30 17:43:21 +02:00
parent df13733b44
commit fcf19f1a1b
76 changed files with 418 additions and 418 deletions

View File

@@ -40,7 +40,7 @@
#include <coreplugin/icore.h>
#include <coreplugin/editormanager/editormanager.h>
#include <duieditor/duimodelmanagerinterface.h>
#include <qmleditor/qmlmodelmanagerinterface.h>
#include <utils/synchronousprocess.h>
#include <utils/pathchooser.h>
@@ -67,7 +67,7 @@ using namespace QmlProjectManager::Internal;
QmlProject::QmlProject(Manager *manager, const QString &fileName)
: m_manager(manager),
m_fileName(fileName),
m_modelManager(ExtensionSystem::PluginManager::instance()->getObject<DuiEditor::DuiModelManagerInterface>())
m_modelManager(ExtensionSystem::PluginManager::instance()->getObject<QmlEditor::QmlModelManagerInterface>())
{
QFileInfo fileInfo(m_fileName);
m_projectName = fileInfo.completeBaseName();

View File

@@ -41,8 +41,8 @@
#include <QtCore/QDir>
namespace DuiEditor {
class DuiModelManagerInterface;
namespace QmlEditor {
class QmlModelManagerInterface;
}
namespace QmlProjectManager {
@@ -108,7 +108,7 @@ private:
QString m_filesFileName;
QmlProjectFile *m_file;
QString m_projectName;
DuiEditor::DuiModelManagerInterface *m_modelManager;
QmlEditor::QmlModelManagerInterface *m_modelManager;
QStringList m_files;

View File

@@ -1,3 +1,3 @@
include(../../plugins/projectexplorer/projectexplorer.pri)
include(../../plugins/texteditor/texteditor.pri)
include(../../plugins/duieditor/duieditor.pri)
include(../../plugins/qmleditor/qmleditor.pri)