aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/analyzerbase/startremotedialog.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <[email protected]>2012-07-27 15:43:00 +0200
committerFriedemann Kleint <[email protected]>2012-07-27 17:08:12 +0200
commitbf980649d2f28266838b7e16e8828a2271d8a69c (patch)
tree0a9b6a0bebea42de04404f1d737fe75c885af6b8 /src/plugins/analyzerbase/startremotedialog.cpp
parent5635272b44a8a5a79fbb073180ca8aa8414d1dab (diff)
tr()-Fixes for 2.6.
- ProjectExplorer::Profile should appear as 'Target' in the UI. - Fix messagebox title capitalization - Fix Q_DECLARE_TR_FUNCTIONS to contain fully qualified class names, add where applicable to replace QCoreApplication::translate(). - Introduce message utility function for the commonly used 'No tool chain set up for this profile' message to ToolChainProfileInformation. - Introduce message utility functions related to adding files to version control to VcsManager to be shared by QmlJsEditor. - Fix typos. - Remove QObject::tr(), QCoreApplication::tr(). - Do not translate diagnostic console warnings of QmlProfiler. Change-Id: I6cee717a504796ef39f6eae58f552c5c8630adf3 Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/analyzerbase/startremotedialog.cpp')
-rw-r--r--src/plugins/analyzerbase/startremotedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/analyzerbase/startremotedialog.cpp b/src/plugins/analyzerbase/startremotedialog.cpp
index 5d1e3856c1e..ec728134592 100644
--- a/src/plugins/analyzerbase/startremotedialog.cpp
+++ b/src/plugins/analyzerbase/startremotedialog.cpp
@@ -80,7 +80,7 @@ StartRemoteDialog::StartRemoteDialog(QWidget *parent)
QFormLayout *formLayout = new QFormLayout;
formLayout->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
- formLayout->addRow(tr("Profile:"), d->profileChooser);
+ formLayout->addRow(tr("Target:"), d->profileChooser);
formLayout->addRow(tr("Executable:"), d->executable);
formLayout->addRow(tr("Arguments:"), d->arguments);
formLayout->addRow(tr("Working directory:"), d->workingDirectory);