Prevent symbol clashes for qml classes

Fix namespace usage such that all classes in shared/qml live in the
Qml namespace, and classes in QmlDesigner plugin in the QmlDesigner
namespace.

This should prevent any symbol clashes until we can finally get rid
of the file dublicates (e.g. QmlDocument).
This commit is contained in:
Kai Koehne
2010-01-14 16:22:43 +01:00
parent f808377344
commit 33ec15b9ab
64 changed files with 150 additions and 146 deletions

View File

@@ -100,8 +100,8 @@ void QmlProjectPlugin::extensionsInitialized()
QmlEditor::QmlModelManagerInterface *modelManager = pluginManager->getObject<QmlEditor::QmlModelManagerInterface>();
Q_ASSERT(modelManager);
connect(modelManager, SIGNAL(documentUpdated(QmlEditor::QmlDocument::Ptr)),
m_qmlTaskManager, SLOT(documentUpdated(QmlEditor::QmlDocument::Ptr)));
connect(modelManager, SIGNAL(documentUpdated(Qml::QmlDocument::Ptr)),
m_qmlTaskManager, SLOT(documentUpdated(Qml::QmlDocument::Ptr)));
}
Q_EXPORT_PLUGIN(QmlProjectPlugin)