diff --git a/src/plugins/welcome/welcomeplugin.cpp b/src/plugins/welcome/welcomeplugin.cpp index 7cb62e6fc02..195dac2d147 100644 --- a/src/plugins/welcome/welcomeplugin.cpp +++ b/src/plugins/welcome/welcomeplugin.cpp @@ -258,8 +258,8 @@ public: l->setContentsMargins(0, 0, 0, 0); l->setSpacing(5); l->addWidget(new IconAndLink("qtaccount", tr("Qt Account"), "https://account.qt.io", this)); - l->addWidget(new IconAndLink("community", tr("Online Community"), "http://forum.qt.io", this)); - l->addWidget(new IconAndLink("blogs", tr("Blogs"), "http://planet.qt.io", this)); + l->addWidget(new IconAndLink("community", tr("Online Community"), "https://forum.qt.io", this)); + l->addWidget(new IconAndLink("blogs", tr("Blogs"), "https://planet.qt.io", this)); l->addWidget(new IconAndLink("userguide", tr("User Guide"), "qthelp://org.qt-project.qtcreator/doc/index.html", this)); vbox->addItem(l); diff --git a/tests/system/suite_WELP/tst_WELP01/test.py b/tests/system/suite_WELP/tst_WELP01/test.py index acbc5bc5cc5..4d8ac502404 100755 --- a/tests/system/suite_WELP/tst_WELP01/test.py +++ b/tests/system/suite_WELP/tst_WELP01/test.py @@ -103,8 +103,8 @@ def main(): if clickItemVerifyHelpCombo(wsButtonLabel, "Qt Creator Manual", "Verifying: Help with Creator Documentation is being opened."): - textUrls = {'Online Community':'http://forum.qt.io', - 'Blogs':'http://planet.qt.io', + textUrls = {'Online Community':'https://forum.qt.io', + 'Blogs':'https://planet.qt.io', 'Qt Account':'https://account.qt.io', 'User Guide':'qthelp://org.qt-project.qtcreator/doc/index.html' }