aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichl Voznesensky <mixask8@mail.ru>2018-10-28 22:49:06 +0300
committerMichl Voznesensky <mixask8@mail.ru>2019-06-18 07:41:25 +0000
commit5bcc70b34deb1dd590cca0c115511f3c6fa9f763 (patch)
tree963d93615f9cd9400753d6c52d73de780c0b8af3
parent7d46060af011737caa2f673d601898abcd3a4e48 (diff)
Fix bug for with redirect to general landing page Qt bug tracker. Now the redirection goes to the page creating the bug
Fixes: QTCREATORBUG-18734 Change-Id: I49847edce7da6a993ded3a9538334279965b6eb4 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
-rw-r--r--src/plugins/help/helpplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp
index 118efadd81..ee6261ee3b 100644
--- a/src/plugins/help/helpplugin.cpp
+++ b/src/plugins/help/helpplugin.cpp
@@ -293,7 +293,7 @@ HelpPluginPrivate::HelpPluginPrivate()
cmd = ActionManager::registerAction(action, "Help.ReportBug");
ActionManager::actionContainer(Core::Constants::M_HELP)->addAction(cmd, Core::Constants::G_HELP_SUPPORT);
connect(action, &QAction::triggered, this, [] {
- QDesktopServices::openUrl(QUrl("https://bugreports.qt.io"));
+ QDesktopServices::openUrl(QUrl("https://bugreports.qt.io/secure/CreateIssue.jspa?pid=10512"));
});
action = new QAction(HelpPlugin::tr("System Information..."), this);