From ef4c53e9efda777c93b0e304ecd091101fb33b1b Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 24 Jan 2019 17:41:24 +0100 Subject: [PATCH] ProjectExplorer: De-virtualize DeployConfigurationFactory::canHandle() It's never overloaded anymore. Change-Id: Id5a4cef9e3806d15d4467a0fc63494c6bc1aa4a8 Reviewed-by: Christian Kandeler --- src/plugins/projectexplorer/deployconfiguration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/deployconfiguration.h b/src/plugins/projectexplorer/deployconfiguration.h index 143241a6ee8..b2011d4ab99 100644 --- a/src/plugins/projectexplorer/deployconfiguration.h +++ b/src/plugins/projectexplorer/deployconfiguration.h @@ -92,7 +92,7 @@ public: // Step is only added if condition is not set, or returns true when called. void addInitialStep(Core::Id stepId, const std::function &condition = {}); - virtual bool canHandle(ProjectExplorer::Target *target) const; + bool canHandle(ProjectExplorer::Target *target) const; void setConfigWidgetCreator(const std::function &configWidgetCreator); void setUseDeploymentDataView();