From 4f743e9bbb6dab736db4c3a4b0b2910844541852 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Wed, 29 Apr 2015 14:52:17 +0200 Subject: [PATCH] Editor manager: fix punctuation in message Added a full stop. Change-Id: Ieba978bc219dc94adecb97e1c6f8f8986398e526 Reviewed-by: Daniel Teske --- src/plugins/coreplugin/editormanager/editormanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/editormanager/editormanager.cpp b/src/plugins/coreplugin/editormanager/editormanager.cpp index 9591262b4a6..eac873ea348 100644 --- a/src/plugins/coreplugin/editormanager/editormanager.cpp +++ b/src/plugins/coreplugin/editormanager/editormanager.cpp @@ -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;