forked from qt-creator/qt-creator
Some more FileName::appendPath() -> pathAppended() changes
Change-Id: Ie494f7ae8a96d97c9497b3ef38d774d2cf787b7f Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -488,11 +488,11 @@ void GenericProject::updateDeploymentData()
|
||||
Utils::FileName deploymentFilePath;
|
||||
if (activeTarget() && activeTarget()->activeBuildConfiguration()) {
|
||||
deploymentFilePath = activeTarget()->activeBuildConfiguration()->buildDirectory()
|
||||
.appendPath(fileName);
|
||||
.pathAppended(fileName);
|
||||
}
|
||||
bool hasDeploymentData = QFileInfo::exists(deploymentFilePath.toString());
|
||||
if (!hasDeploymentData) {
|
||||
deploymentFilePath = projectDirectory().appendPath(fileName);
|
||||
deploymentFilePath = projectDirectory().pathAppended(fileName);
|
||||
hasDeploymentData = QFileInfo::exists(deploymentFilePath.toString());
|
||||
}
|
||||
if (hasDeploymentData) {
|
||||
|
||||
Reference in New Issue
Block a user