QbsProject: Remove unused method

Change-Id: I44494c28a631850f215d7ae45209ef4be3c398d1
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Jarek Kobus
2023-07-27 12:42:36 +02:00
parent 1c3ce50c3d
commit eaa9f0f4c1
2 changed files with 0 additions and 7 deletions

View File

@@ -56,7 +56,6 @@
#include <QJsonArray> #include <QJsonArray>
#include <QMessageBox> #include <QMessageBox>
#include <QSet> #include <QSet>
#include <QTimer>
#include <QVariantMap> #include <QVariantMap>
#include <algorithm> #include <algorithm>
@@ -456,11 +455,6 @@ void QbsBuildSystem::updateAfterParse()
}); });
} }
void QbsBuildSystem::delayedUpdateAfterParse()
{
QTimer::singleShot(0, this, &QbsBuildSystem::updateAfterParse);
}
void QbsBuildSystem::updateProjectNodes(const std::function<void ()> &continuation) void QbsBuildSystem::updateProjectNodes(const std::function<void ()> &continuation)
{ {
m_treeCreationWatcher = new TreeCreationWatcher(this); m_treeCreationWatcher = new TreeCreationWatcher(this);

View File

@@ -119,7 +119,6 @@ private:
void updateBuildTargetData(); void updateBuildTargetData();
bool checkCancelStatus(); bool checkCancelStatus();
void updateAfterParse(); void updateAfterParse();
void delayedUpdateAfterParse();
void updateProjectNodes(const std::function<void()> &continuation); void updateProjectNodes(const std::function<void()> &continuation);
Utils::FilePath installRoot(); Utils::FilePath installRoot();