From 33d67828f6d4ff96031fab692df7d9f189b3023f Mon Sep 17 00:00:00 2001 From: Takumi ASAKI Date: Thu, 15 Sep 2016 11:00:46 +0900 Subject: [PATCH] EditorManager: Use "URL" in message Change-Id: Icfd31b7cd89a727a3fbfc53ad53f036f7f7c3120 Reviewed-by: Leena Miettinen --- src/plugins/coreplugin/editormanager/systemeditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/editormanager/systemeditor.cpp b/src/plugins/coreplugin/editormanager/systemeditor.cpp index d971e62ca40..d53ef8c2bb2 100644 --- a/src/plugins/coreplugin/editormanager/systemeditor.cpp +++ b/src/plugins/coreplugin/editormanager/systemeditor.cpp @@ -61,7 +61,7 @@ bool SystemEditor::startEditor(const QString &fileName, QString *errorMessage) url.setScheme(QLatin1String("file")); if (!QDesktopServices::openUrl(url)) { if (errorMessage) - *errorMessage = tr("Could not open url %1.").arg(url.toString()); + *errorMessage = tr("Could not open URL %1.").arg(url.toString()); return false; } return true;