Editor manager: fix punctuation in message

Added a full stop.

Change-Id: Ieba978bc219dc94adecb97e1c6f8f8986398e526
Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
This commit is contained in:
Leena Miettinen
2015-04-29 14:52:17 +02:00
parent 942a59a3a8
commit 4f743e9bbb

View File

@@ -590,7 +590,7 @@ IEditor *EditorManagerPrivate::openEditor(EditorView *view, const QString &fileN
if (!editor->open(&errorString, fn, realFn)) {
QApplication::restoreOverrideCursor();
if (errorString.isEmpty())
errorString = tr("Could not open \"%1\": Unknown error").arg(realFn);
errorString = tr("Could not open \"%1\": Unknown error.").arg(realFn);
QMessageBox::critical(ICore::mainWindow(), EditorManager::tr("File Error"), errorString);
delete editor;
return 0;