From 572045324b01ccae31d61ba292bd34f43c8fceac Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Mon, 13 May 2013 17:16:52 +0200 Subject: [PATCH] CustomExecutableRC: s/Command/Executable/ A custom executable RC should have an executable to set up, not a command. That is more consistent with the other RCs, too. Change-Id: I7d71f9f93cd8294132a65fadf2e7a8885143c19d Reviewed-by: Daniel Teske Reviewed-by: Leena Miettinen --- src/plugins/qtsupport/customexecutableconfigurationwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qtsupport/customexecutableconfigurationwidget.cpp b/src/plugins/qtsupport/customexecutableconfigurationwidget.cpp index 0ed46365399..e137c63ceae 100644 --- a/src/plugins/qtsupport/customexecutableconfigurationwidget.cpp +++ b/src/plugins/qtsupport/customexecutableconfigurationwidget.cpp @@ -56,7 +56,7 @@ CustomExecutableConfigurationWidget::CustomExecutableConfigurationWidget(CustomE m_executableChooser = new Utils::PathChooser(this); m_executableChooser->setExpectedKind(Utils::PathChooser::Command); - layout->addRow(tr("Command:"), m_executableChooser); + layout->addRow(tr("Executable:"), m_executableChooser); m_commandLineArgumentsLineEdit = new QLineEdit(this); m_commandLineArgumentsLineEdit->setMinimumWidth(200); // this shouldn't be fixed here...