From c738305989015f9606e3d00914c0c1cec008ee38 Mon Sep 17 00:00:00 2001 From: Marco Bubke Date: Tue, 21 Mar 2023 15:36:14 +0100 Subject: [PATCH] QmlDesigner: Fix compilation error There was an unused parameter. Change-Id: I50e727a2c7152d730660f63a9f2aa43718ae1e4a Reviewed-by: Thomas Hartmann --- .../components/contentlibrary/contentlibrarymaterialsmodel.cpp | 2 +- src/plugins/studiowelcome/studiowelcomeplugin.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qmldesigner/components/contentlibrary/contentlibrarymaterialsmodel.cpp b/src/plugins/qmldesigner/components/contentlibrary/contentlibrarymaterialsmodel.cpp index c5620097cb8..4928e83dc31 100644 --- a/src/plugins/qmldesigner/components/contentlibrary/contentlibrarymaterialsmodel.cpp +++ b/src/plugins/qmldesigner/components/contentlibrary/contentlibrarymaterialsmodel.cpp @@ -172,7 +172,7 @@ bool ContentLibraryMaterialsModel::fetchBundleMetadata(const QDir &bundleDir) return false; } -void ContentLibraryMaterialsModel::downloadSharedFiles(const QDir &targetDir, const QStringList &files) +void ContentLibraryMaterialsModel::downloadSharedFiles(const QDir &targetDir, const QStringList &) { QString metaFileUrl = m_baseUrl + "/shared_files.zip"; FileDownloader *downloader = new FileDownloader(this); diff --git a/src/plugins/studiowelcome/studiowelcomeplugin.cpp b/src/plugins/studiowelcome/studiowelcomeplugin.cpp index 7be9f868feb..daf25640eaf 100644 --- a/src/plugins/studiowelcome/studiowelcomeplugin.cpp +++ b/src/plugins/studiowelcome/studiowelcomeplugin.cpp @@ -23,7 +23,7 @@ #include #include #include -#include .h> +#include #include #include