From e4e30b24e0e8619be56609a2b039b2821dc8d65b Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Tue, 6 Sep 2016 11:28:56 +0200 Subject: [PATCH] Help: Fix online documentation path When trying to open pages that should be in the installed documentation, but are not, we try to open the page from the online documentation in the external browser (e.g. for the links from Welcome mode). Looks like the online documentation moved. Change-Id: I7a8eaf37783661dc4751a12b65efeac419d3a802 Reviewed-by: Leena Miettinen Reviewed-by: Eike Ziller --- src/plugins/help/helpplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp index fc1603a9cf7..d2c2729788a 100644 --- a/src/plugins/help/helpplugin.cpp +++ b/src/plugins/help/helpplugin.cpp @@ -625,7 +625,7 @@ void HelpPlugin::handleHelpRequest(const QUrl &url, HelpManager::HelpViewerLocat if (url.authority() == "org.qt-project.qtcreator") urlPrefix.append(QString::fromLatin1("qtcreator")); else - urlPrefix.append("latest"); + urlPrefix.append("qt-5"); address = urlPrefix + address.mid(address.lastIndexOf(QLatin1Char('/'))); } }