summaryrefslogtreecommitdiffstats
path: root/src/designer/src/designer
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-11-20 09:40:37 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2020-11-25 07:56:50 +0000
commit54e9503422e553d7b47e8205e357bcd802a8ec07 (patch)
treeb08e7398b1c4de2dd819f5f0266a97504e313a2b /src/designer/src/designer
parentb8aa49dc34c69c15cc925e7e94c36af4068cef94 (diff)
Use https instead of http when opening docs
Change-Id: I10dfbd66b2510ae23ef91a2048f1ead6ddfb588f Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 1d994b1471bd43d7003697b47e3f7d2ebfc808df) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/designer/src/designer')
-rw-r--r--src/designer/src/designer/qdesigner_actions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/designer/src/designer/qdesigner_actions.cpp b/src/designer/src/designer/qdesigner_actions.cpp
index 11cb350df..55e250283 100644
--- a/src/designer/src/designer/qdesigner_actions.cpp
+++ b/src/designer/src/designer/qdesigner_actions.cpp
@@ -1001,9 +1001,9 @@ bool QDesignerActions::showHelp(const QString &htmlFile)
{
const int qtVersion = QT_VERSION;
QString url;
- QTextStream(&url) << "http://doc.qt.io/qt-" << (qtVersion >> 16)
+ QTextStream(&url) << "https://doc.qt.io/qt-" << (qtVersion >> 16)
// TODO: uncomment the line below just before Qt 6.0 release
-// we should have then http://doc.qt.io/qt-6.0/ link valid (like in case of 5.x series).
+// we should have then https://doc.qt.io/qt-6.0/ link valid (like in case of 5.x series).
// Currently it redirects to Qt 6 snapshot.
// << "." << ((qtVersion >> 8) & 0xFF)
<< '/' << htmlFile;