From 6bdec500019807a7725ecbd847aafd4c229ecaaf Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Tue, 15 Nov 2016 16:42:54 +0100 Subject: [PATCH] Fix string Change-Id: Id540eb7b7e85618bffd7e44610df2e22748c494f Reviewed-by: Alessandro Portale --- src/plugins/scxmleditor/outputpane/errorwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/scxmleditor/outputpane/errorwidget.cpp b/src/plugins/scxmleditor/outputpane/errorwidget.cpp index 5cadcf234fb..6b74034987e 100644 --- a/src/plugins/scxmleditor/outputpane/errorwidget.cpp +++ b/src/plugins/scxmleditor/outputpane/errorwidget.cpp @@ -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; }