From f044e69f675f8dc12efee4a9715a3217ebd47a02 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Thu, 15 Mar 2018 14:17:27 +0100 Subject: [PATCH] ProjectExplorer: Remove obsolete functionality Change-Id: Iea9b50c0bf9d855fb039a30062e26f8d6f3bc321 Reviewed-by: Eike Ziller --- src/plugins/projectexplorer/projectnodes.cpp | 8 -------- src/plugins/projectexplorer/projectnodes.h | 5 ----- 2 files changed, 13 deletions(-) diff --git a/src/plugins/projectexplorer/projectnodes.cpp b/src/plugins/projectexplorer/projectnodes.cpp index ea4b780cabe..f5e03c31443 100644 --- a/src/plugins/projectexplorer/projectnodes.cpp +++ b/src/plugins/projectexplorer/projectnodes.cpp @@ -389,14 +389,6 @@ static QList scanForFilesRecursively(const Utils::FileName &director return result; } - -QList FileNode::scanForFiles(const Utils::FileName &directory, - const std::function factory, - QFutureInterface > *future) -{ - return FileNode::scanForFilesWithVersionControls(directory, factory, QList(), future); -} - QList FileNode::scanForFilesWithVersionControls(const Utils::FileName &directory, const std::function factory, diff --git a/src/plugins/projectexplorer/projectnodes.h b/src/plugins/projectexplorer/projectnodes.h index 2619b7e8a6c..09792a2a36f 100644 --- a/src/plugins/projectexplorer/projectnodes.h +++ b/src/plugins/projectexplorer/projectnodes.h @@ -191,11 +191,6 @@ public: FileNode *asFileNode() final { return this; } const FileNode *asFileNode() const final { return this; } - // For ABI compatibility, remove in QtC 4.4: - static QList scanForFiles(const Utils::FileName &directory, - const std::function factory, - QFutureInterface> *future = nullptr); - static QList scanForFilesWithVersionControls(const Utils::FileName &directory, const std::function factory,