forked from qt-creator/qt-creator
Fix string
Change-Id: Id540eb7b7e85618bffd7e44610df2e22748c494f Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -209,7 +209,7 @@ void ErrorWidget::exportWarnings()
|
||||
|
||||
QFile file(fileName);
|
||||
if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
|
||||
QMessageBox::warning(this, tr("Export Failed"), tr("Cannot open file %.").arg(fileName));
|
||||
QMessageBox::warning(this, tr("Export Failed"), tr("Cannot open file %1.").arg(fileName));
|
||||
file.close();
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user