From 93e741270b3ab198dea78ec748fe83eaebc41843 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 8 Sep 2015 09:11:50 +0200 Subject: Remove unused code Change-Id: I5a5f41222a572f1ae3662e5c48c72b4a6adfbc13 Reviewed-by: Niels Weber Reviewed-by: David Schulz --- plugins/autotest/testcodeparser.h | 1 - plugins/autotest/testtreemodel.cpp | 15 --------------- plugins/autotest/testtreemodel.h | 1 - 3 files changed, 17 deletions(-) diff --git a/plugins/autotest/testcodeparser.h b/plugins/autotest/testcodeparser.h index 0ba16ff762..3c5529f63a 100644 --- a/plugins/autotest/testcodeparser.h +++ b/plugins/autotest/testcodeparser.h @@ -67,7 +67,6 @@ public: signals: void cacheCleared(); void testItemCreated(TestTreeItem *item, TestTreeModel::Type type); - void testItemsCreated(const QList &itemList, TestTreeModel::Type type); void testItemModified(TestTreeItem *tItem, TestTreeModel::Type type, const QStringList &file); void testItemsRemoved(const QString &filePath, TestTreeModel::Type type); void unnamedQuickTestsUpdated(const QString &mainFile, diff --git a/plugins/autotest/testtreemodel.cpp b/plugins/autotest/testtreemodel.cpp index b6b9c8ca3a..ccc7616df4 100644 --- a/plugins/autotest/testtreemodel.cpp +++ b/plugins/autotest/testtreemodel.cpp @@ -53,8 +53,6 @@ TestTreeModel::TestTreeModel(QObject *parent) : &TestTreeModel::removeAllTestItems, Qt::QueuedConnection); connect(m_parser, &TestCodeParser::testItemCreated, this, &TestTreeModel::addTestTreeItem, Qt::QueuedConnection); - connect(m_parser, &TestCodeParser::testItemsCreated, - this, &TestTreeModel::addTestTreeItems, Qt::QueuedConnection); connect(m_parser, &TestCodeParser::testItemModified, this, &TestTreeModel::modifyTestTreeItem, Qt::QueuedConnection); connect(m_parser, &TestCodeParser::testItemsRemoved, @@ -670,19 +668,6 @@ void TestTreeModel::addTestTreeItem(TestTreeItem *item, TestTreeModel::Type type emit testTreeModelChanged(); } -void TestTreeModel::addTestTreeItems(const QList &itemList, TestTreeModel::Type type) -{ - TestTreeItem *parent = rootItemForType(type); - QModelIndex index = rootIndexForType(type); - - beginInsertRows(index, parent->childCount(), parent->childCount() + itemList.size() - 1); - foreach (const TestTreeItem &item, itemList) { - TestTreeItem *toBeAdded = new TestTreeItem(item); - parent->appendChild(toBeAdded); - } - endInsertRows(); -} - void TestTreeModel::updateUnnamedQuickTest(const QString &mainFile, const QMap &functions) { diff --git a/plugins/autotest/testtreemodel.h b/plugins/autotest/testtreemodel.h index 003336e5b8..7a7deaeb13 100644 --- a/plugins/autotest/testtreemodel.h +++ b/plugins/autotest/testtreemodel.h @@ -92,7 +92,6 @@ public slots: private: void addTestTreeItem(TestTreeItem *item, Type type); - void addTestTreeItems(const QList &itemList, Type type); void updateUnnamedQuickTest(const QString &mainFile, const QMap &functions); void modifyTestTreeItem(TestTreeItem *item, Type type, const QStringList &file); -- cgit v1.2.1