summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2019-08-21 11:03:36 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-08-21 14:34:09 +0200
commit7e234aca2783f089ba2401b84ee2226f5de153b6 (patch)
tree31aff3ccad314238e07f7eaf11b93b93741b3f71
parent337fbb5699cccee35408fd49d80b9dbf99de316f (diff)
Qt Designer: Add missing space to message
Amends 50958187ce6a00f8fa9171f0fe3cf923c4964d28. Change-Id: I1fd2a83187c59cc11bc59f9b91917afdc3c37dd0 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
-rw-r--r--src/designer/src/designer/qdesigner_actions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/designer/src/designer/qdesigner_actions.cpp b/src/designer/src/designer/qdesigner_actions.cpp
index aaeaef4cc..71a02f759 100644
--- a/src/designer/src/designer/qdesigner_actions.cpp
+++ b/src/designer/src/designer/qdesigner_actions.cpp
@@ -854,7 +854,7 @@ bool QDesignerActions::writeOutForm(QDesignerFormWindowInterface *fw, const QStr
QMessageBox::Cancel, fw);
box.setWindowModality(Qt::WindowModal);
box.setInformativeText(tr("It was not possible to write the file %1 to disk."
- "\nReason:%2")
+ "\nReason: %2")
.arg(f.fileName(), f.errorString()));
box.exec();
return false;