EditorManager: Use "URL" in message

Change-Id: Icfd31b7cd89a727a3fbfc53ad53f036f7f7c3120
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Takumi ASAKI
2016-09-15 11:00:46 +09:00
committed by Takumi ASAKI
parent 648a909918
commit 33d67828f6

View File

@@ -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;