Fixing capitalisation of titles

Change-Id: I6a915cc69fe1cf6630d1a9a0fdb6b7a8d39b306c
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Thomas Hartmann
2017-01-18 14:36:12 +01:00
parent aa7d1ec296
commit f446fdc077
4 changed files with 4 additions and 4 deletions

View File

@@ -152,7 +152,7 @@ void AndroidCreateKeystoreCertificate::on_buttonBox_accepted()
if (!validateUserInput())
return;
m_keystoreFilePath = Utils::FileName::fromString(QFileDialog::getSaveFileName(this, tr("Keystore file name"),
m_keystoreFilePath = Utils::FileName::fromString(QFileDialog::getSaveFileName(this, tr("Keystore Filename"),
QDir::homePath() + QLatin1String("/android_release.keystore"),
tr("Keystore files (*.keystore *.jks)")));
if (m_keystoreFilePath.isEmpty())

View File

@@ -559,7 +559,7 @@ void TestResultsPane::onCopyWholeTriggered()
void TestResultsPane::onSaveWholeTriggered()
{
const QString fileName = QFileDialog::getSaveFileName(Core::ICore::dialogParent(),
tr("Save Output To..."));
tr("Save Output To"));
if (fileName.isEmpty())
return;

View File

@@ -425,7 +425,7 @@ void MainWidget::exportToImage()
.arg(suggestedFileName)
.arg(QDateTime::currentDateTime().toString("yyyyMMddhhmmss"));
const QString selectedFileName = QFileDialog::getSaveFileName(this,
tr("Export Canvas To Image"),
tr("Export Canvas to Image"),
suggestedFileName,
saveImageFileFilter());
if (!selectedFileName.isEmpty()) {

View File

@@ -82,7 +82,7 @@ void SftpFsWindow::downloadFile()
const QModelIndexList selectedIndexes = m_ui->fsView->selectionModel()->selectedIndexes();
if (selectedIndexes.count() != 2)
return;
const QString targetFilePath = QFileDialog::getSaveFileName(this, tr("Choose target file"),
const QString targetFilePath = QFileDialog::getSaveFileName(this, tr("Choose Target File"),
QDir::tempPath());
if (targetFilePath.isEmpty())
return;