summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/plugins/projectexplorer/buildsteplist.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/plugins/projectexplorer/buildsteplist.h b/src/plugins/projectexplorer/buildsteplist.h
index b9fce034da..59be5a1730 100644
--- a/src/plugins/projectexplorer/buildsteplist.h
+++ b/src/plugins/projectexplorer/buildsteplist.h
@@ -57,16 +57,6 @@ public:
}
return nullptr;
}
- template <class BS> QList<BS *>allOfType() {
- QList<BS *> result;
- BS *bs = nullptr;
- for (int i = 0; i < count(); ++i) {
- bs = qobject_cast<BS *>(at(i));
- if (bs)
- result.append(bs);
- }
- return result;
- }
int count() const;
bool isEmpty() const;