aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/jsonwizard
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2018-09-05 22:49:35 +0200
committerRobert Loehning <robert.loehning@qt.io>2018-09-07 14:02:23 +0000
commit747d1ef9f114653085dcecefd7b71407390074ec (patch)
tree609d14d1c93464359774f58342fbb3cbbf2489af /src/plugins/projectexplorer/jsonwizard
parenteccc24e5c9e089fe88b49e36afecfb4adce0ac5e (diff)
Remove unused variables
Change-Id: I8b49a2eea7509abb685d751a0f038dc3b4f555ca Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/jsonwizard')
-rw-r--r--src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp
index c4e3477596..e1daab17d1 100644
--- a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp
+++ b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp
@@ -878,7 +878,6 @@ bool ListField::parseData(const QVariant &data, QString *errorMessage)
for (const QVariant &i : value.toList()) {
std::unique_ptr<QStandardItem> item = createStandardItemFromListItem(i, errorMessage);
- QString test = item->text();
QTC_ASSERT(!item || !item->text().isEmpty(), continue);
m_itemList.emplace_back(std::move(item));
}