forked from qt-creator/qt-creator
ProjectExplorer: Remove one constructor overload of DeployableFile
Change-Id: I87e444349129e9370b5fec505444723d36e21448 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -35,6 +35,8 @@
|
||||
|
||||
#include <utils/algorithm.h>
|
||||
|
||||
using namespace Utils;
|
||||
|
||||
namespace ProjectExplorer {
|
||||
|
||||
const char BUILD_STEP_LIST_COUNT[] = "ProjectExplorer.BuildConfiguration.BuildStepListCount";
|
||||
@@ -107,7 +109,7 @@ bool DeployConfiguration::fromMap(const QVariantMap &map)
|
||||
m_usesCustomDeploymentData = map.value(USES_DEPLOYMENT_DATA, false).toBool();
|
||||
const QVariantMap deployData = map.value(DEPLOYMENT_DATA).toMap();
|
||||
for (auto it = deployData.begin(); it != deployData.end(); ++it)
|
||||
m_customDeploymentData.addFile(it.key(), it.value().toString());
|
||||
m_customDeploymentData.addFile(FilePath::fromString(it.key()), it.value().toString());
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user