From 43481d88daab38852ddbe3eb924480751eed459a Mon Sep 17 00:00:00 2001 From: Tim Jenssen Date: Wed, 15 Nov 2017 00:50:59 +0100 Subject: [PATCH] wizards: remove unused variable Change-Id: Ic6e567360b909c577ac679b6c33565021b65bf9e Reviewed-by: Tobias Hunger --- src/plugins/projectexplorer/jsonwizard/jsonwizard_test.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizard_test.cpp b/src/plugins/projectexplorer/jsonwizard/jsonwizard_test.cpp index bc8ec7ac926..1b8b84d8c81 100644 --- a/src/plugins/projectexplorer/jsonwizard/jsonwizard_test.cpp +++ b/src/plugins/projectexplorer/jsonwizard/jsonwizard_test.cpp @@ -95,7 +95,6 @@ auto findComboBox(Utils::Wizard *wizard, const QString &objectName) { void ProjectExplorer::ProjectExplorerPlugin::testJsonWizardsEmptyWizard() { QString errorMessage; - QWidget parent; const QJsonObject wizard = createGeneralWizard(QJsonObject()); JsonWizardFactory *factory = ProjectExplorer::JsonWizardFactory::createWizardFactory(wizard.toVariantMap(), QDir(), &errorMessage); @@ -106,7 +105,6 @@ void ProjectExplorer::ProjectExplorerPlugin::testJsonWizardsEmptyWizard() void ProjectExplorer::ProjectExplorerPlugin::testJsonWizardsEmptyPage() { QString errorMessage; - QWidget parent; const QJsonObject pages = createFieldPageJsonObject(QJsonArray()); const QJsonObject wizard = createGeneralWizard(pages); @@ -134,7 +132,6 @@ void ProjectExplorer::ProjectExplorerPlugin::testJsonWizardsUnusedKeyAtFields() QString fieldType(QString::fromLatin1(QTest::currentDataTag())); QFETCH(QJsonObject, wrongDataJsonObect); QString errorMessage; - QWidget parent; const QJsonObject pages = QJsonObject{ {"name", "testpage"}, {"trDisplayName", "mytestpage"},