summaryrefslogtreecommitdiffstats
path: root/src/designer/src/designer/qdesigner_actions.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-11-20 09:40:37 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-11-21 14:10:56 +0100
commit1d994b1471bd43d7003697b47e3f7d2ebfc808df (patch)
tree1439c230895f55bfc386cd09cf7f48ecac0d8cc3 /src/designer/src/designer/qdesigner_actions.cpp
parent6f3c749f0e85c0bfd93a6d176fce2f25edf58962 (diff)
Use https instead of http when opening docs
Pick-to: 6.0 6.0.0 Change-Id: I10dfbd66b2510ae23ef91a2048f1ead6ddfb588f Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'src/designer/src/designer/qdesigner_actions.cpp')
-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;