JSON wizard: fix capitalization of message box title

Use book-style capitalization for titles.

Change-Id: I7912f63aeaa87ae5d562839edfafa584140b88e4
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Leena Miettinen
2015-04-29 14:56:09 +02:00
committed by Tobias Hunger
parent 4752c809c9
commit d9e11e8d40

View File

@@ -211,7 +211,7 @@ void JsonWizard::accept()
emit filesReady(m_files); emit filesReady(m_files);
if (!JsonWizardGenerator::polish(this, &m_files, &errorMessage)) { if (!JsonWizardGenerator::polish(this, &m_files, &errorMessage)) {
if (!errorMessage.isEmpty()) if (!errorMessage.isEmpty())
QMessageBox::warning(this, tr("Failed to polish Files"), errorMessage); QMessageBox::warning(this, tr("Failed to Polish Files"), errorMessage);
return; return;
} }
emit filesPolished(m_files); emit filesPolished(m_files);