forked from qt-creator/qt-creator
GUI style fixes: spaces before ellipses and excess ellipses
This commit is contained in:
@@ -819,7 +819,7 @@ FileManager::ReadOnlyAction
|
|||||||
|
|
||||||
QPushButton *saveAsButton = 0;
|
QPushButton *saveAsButton = 0;
|
||||||
if (displaySaveAsButton)
|
if (displaySaveAsButton)
|
||||||
saveAsButton = msgBox.addButton(tr("Save as ..."), QMessageBox::ActionRole);
|
saveAsButton = msgBox.addButton(tr("Save as..."), QMessageBox::ActionRole);
|
||||||
|
|
||||||
msgBox.setDefaultButton(vcsButton ? vcsButton : makeWritableButton);
|
msgBox.setDefaultButton(vcsButton ? vcsButton : makeWritableButton);
|
||||||
msgBox.exec();
|
msgBox.exec();
|
||||||
|
@@ -1522,7 +1522,7 @@ private:
|
|||||||
: CppQuickFixOperation(state, priority)
|
: CppQuickFixOperation(state, priority)
|
||||||
, binaryAST(binaryAST)
|
, binaryAST(binaryAST)
|
||||||
{
|
{
|
||||||
setDescription(QApplication::translate("CppTools::QuickFix", "Add local Declaration"));
|
setDescription(QApplication::translate("CppTools::QuickFix", "Add Local Declaration"));
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void performChanges(CppRefactoringFile *currentFile, CppRefactoringChanges *)
|
virtual void performChanges(CppRefactoringFile *currentFile, CppRefactoringChanges *)
|
||||||
@@ -1612,7 +1612,7 @@ private:
|
|||||||
, m_name(newName)
|
, m_name(newName)
|
||||||
{
|
{
|
||||||
setDescription(QApplication::translate("CppTools::QuickFix",
|
setDescription(QApplication::translate("CppTools::QuickFix",
|
||||||
"Convert to Camel Case ..."));
|
"Convert to Camel Case"));
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void performChanges(CppRefactoringFile *, CppRefactoringChanges *)
|
virtual void performChanges(CppRefactoringFile *, CppRefactoringChanges *)
|
||||||
|
@@ -229,7 +229,7 @@ void QmlProfilerTool::initialize(ExtensionSystem::IPlugin * /*plugin*/)
|
|||||||
Core::ActionContainer *manalyzer = am->actionContainer(Analyzer::Constants::M_DEBUG_ANALYZER);
|
Core::ActionContainer *manalyzer = am->actionContainer(Analyzer::Constants::M_DEBUG_ANALYZER);
|
||||||
const Core::Context globalcontext(Core::Constants::C_GLOBAL);
|
const Core::Context globalcontext(Core::Constants::C_GLOBAL);
|
||||||
|
|
||||||
d->m_attachAction = new QAction(tr("Attach ..."), manalyzer);
|
d->m_attachAction = new QAction(tr("Attach..."), manalyzer);
|
||||||
Core::Command *command = am->registerAction(d->m_attachAction,
|
Core::Command *command = am->registerAction(d->m_attachAction,
|
||||||
Constants::ATTACH, globalcontext);
|
Constants::ATTACH, globalcontext);
|
||||||
command->setAttribute(Core::Command::CA_UpdateText);
|
command->setAttribute(Core::Command::CA_UpdateText);
|
||||||
|
@@ -102,7 +102,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="addIconButton">
|
<widget class="QPushButton" name="addIconButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add Launcher Icon ...</string>
|
<string>Add Launcher Icon...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@@ -397,7 +397,7 @@ void MaemoDeviceConfigurationsSettingsWidget::finishDeployment()
|
|||||||
{
|
{
|
||||||
m_keyDeployer->stopDeployment();
|
m_keyDeployer->stopDeployment();
|
||||||
m_ui->deployKeyButton->disconnect();
|
m_ui->deployKeyButton->disconnect();
|
||||||
m_ui->deployKeyButton->setText(tr("Deploy Public Key ..."));
|
m_ui->deployKeyButton->setText(tr("&Deploy Public Key..."));
|
||||||
connect(m_ui->deployKeyButton, SIGNAL(clicked()), this, SLOT(deployKey()));
|
connect(m_ui->deployKeyButton, SIGNAL(clicked()), this, SLOT(deployKey()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -415,7 +415,7 @@
|
|||||||
<string>Click here if you do not have an SSH key yet.</string>
|
<string>Click here if you do not have an SSH key yet.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Generate SSH Key ...</string>
|
<string>&Generate SSH Key...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -431,7 +431,7 @@
|
|||||||
<string>This will enable you to log into the device without a password.</string>
|
<string>This will enable you to log into the device without a password.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Deploy Public Key ...</string>
|
<string>&Deploy Public Key...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -447,7 +447,7 @@
|
|||||||
<string>Click here to see which processes are running on the device.</string>
|
<string>Click here to see which processes are running on the device.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Remote Processes ...</string>
|
<string>Remote Processes...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
Reference in New Issue
Block a user