From 5dddc42f7087d352ba8d6cdee071fa896857f89e Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 2 Jun 2022 14:22:25 +0200 Subject: [PATCH] ProjectExplorer: Rename column headers in DeploymentDataView Local and Remote are not quite right anymore, it's more generic "Source" now. Change-Id: I06e8985d4515bfeae3c31c8fcff6bd188916df86 Reviewed-by: Leena Miettinen Reviewed-by: Christian Kandeler Reviewed-by: --- .../src/linux-mobile/creator-deployment-embedded-linux.qdoc | 4 ++-- src/plugins/projectexplorer/deploymentdataview.cpp | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/qtcreator/src/linux-mobile/creator-deployment-embedded-linux.qdoc b/doc/qtcreator/src/linux-mobile/creator-deployment-embedded-linux.qdoc index d1880588a00..c0b67b7f28e 100644 --- a/doc/qtcreator/src/linux-mobile/creator-deployment-embedded-linux.qdoc +++ b/doc/qtcreator/src/linux-mobile/creator-deployment-embedded-linux.qdoc @@ -47,9 +47,9 @@ \image qtcreator-embedded-linux-deployment-details.png "Deploy to embedded Linux" The files to be installed are listed in the \uicontrol {Deployment} step, - the \uicontrol {Files to deploy} field. The \uicontrol {Local File Path} + the \uicontrol {Files to deploy} field. The \uicontrol {Source File Path} field displays the location of the file on the development PC. The - \uicontrol {Remote Directory} field displays the directory where the file is + \uicontrol {Target Directory} field displays the directory where the file is installed on the device. Text in red color indicates that the information is missing. diff --git a/src/plugins/projectexplorer/deploymentdataview.cpp b/src/plugins/projectexplorer/deploymentdataview.cpp index 689c351125f..3e586938e7f 100644 --- a/src/plugins/projectexplorer/deploymentdataview.cpp +++ b/src/plugins/projectexplorer/deploymentdataview.cpp @@ -84,11 +84,10 @@ public: bool isEditable = false; }; - DeploymentDataView::DeploymentDataView(DeployConfiguration *dc) { auto model = new TreeModel(this); - model->setHeader({tr("Local File Path"), tr("Remote Directory")}); + model->setHeader({tr("Source File Path"), tr("Target Directory")}); auto view = new QTreeView(this); view->setMinimumSize(QSize(100, 100));