QmlDesigner: Remove "Internal" namespace from the bundle importer

Change-Id: If082d7fe724b6db2aaad8c1a6bf56f68bbbb3baf
Reviewed-by: Qt CI Patch Build Bot <ci_patchbuild_bot@qt.io>
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
This commit is contained in:
Mahmoud Badri
2024-04-29 15:29:46 +03:00
parent 7a9a30d68c
commit af6dcb6659
8 changed files with 28 additions and 37 deletions

View File

@@ -209,10 +209,10 @@ void ContentLibraryMaterialsModel::downloadSharedFiles(const QDir &targetDir, co
void ContentLibraryMaterialsModel::createImporter()
{
m_importer = new Internal::ContentLibraryBundleImporter();
m_importer = new ContentLibraryBundleImporter();
#ifdef QDS_USE_PROJECTSTORAGE
connect(m_importer,
&Internal::ContentLibraryBundleImporter::importFinished,
&ContentLibraryBundleImporter::importFinished,
this,
[&](const QmlDesigner::TypeName &typeName) {
m_importerRunning = false;
@@ -222,7 +222,7 @@ void ContentLibraryMaterialsModel::createImporter()
});
#else
connect(m_importer,
&Internal::ContentLibraryBundleImporter::importFinished,
&ContentLibraryBundleImporter::importFinished,
this,
[&](const QmlDesigner::NodeMetaInfo &metaInfo) {
m_importerRunning = false;
@@ -232,7 +232,7 @@ void ContentLibraryMaterialsModel::createImporter()
});
#endif
connect(m_importer, &Internal::ContentLibraryBundleImporter::unimportFinished, this,
connect(m_importer, &ContentLibraryBundleImporter::unimportFinished, this,
[&](const QmlDesigner::NodeMetaInfo &metaInfo) {
Q_UNUSED(metaInfo)
m_importerRunning = false;
@@ -331,7 +331,7 @@ bool ContentLibraryMaterialsModel::matBundleExists() const
return m_matBundleExists;
}
Internal::ContentLibraryBundleImporter *ContentLibraryMaterialsModel::bundleImporter() const
ContentLibraryBundleImporter *ContentLibraryMaterialsModel::bundleImporter() const
{
return m_importer;
}