diff options
author | Chris Lane <chris@chrislane.com> | 2018-11-02 12:04:08 +0000 |
---|---|---|
committer | Chris Lane <chris@chrislane.com> | 2018-11-02 12:04:08 +0000 |
commit | 0572a1e4e6cd16938f3a05c270d658f3827e8a0b (patch) | |
tree | 738e468960db01f8e614556a296d2b3b5c35458f /application | |
parent | 9b74e73ad300404049f476d2a79e5b63f4665fee (diff) | |
download | MultiMC-0572a1e4e6cd16938f3a05c270d658f3827e8a0b.tar MultiMC-0572a1e4e6cd16938f3a05c270d658f3827e8a0b.tar.gz MultiMC-0572a1e4e6cd16938f3a05c270d658f3827e8a0b.tar.lz MultiMC-0572a1e4e6cd16938f3a05c270d658f3827e8a0b.tar.xz MultiMC-0572a1e4e6cd16938f3a05c270d658f3827e8a0b.zip |
NOISSUE use https more widely
Diffstat (limited to 'application')
-rw-r--r-- | application/BuildConfig.h | 2 | ||||
-rw-r--r-- | application/MainWindow.cpp | 6 | ||||
-rw-r--r-- | application/dialogs/AboutDialog.cpp | 2 | ||||
-rw-r--r-- | application/dialogs/AboutDialog.ui | 2 | ||||
-rw-r--r-- | application/pages/global/ExternalToolsPage.ui | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/application/BuildConfig.h b/application/BuildConfig.h index 05fff490..77c42dd4 100644 --- a/application/BuildConfig.h +++ b/application/BuildConfig.h @@ -51,7 +51,7 @@ public: /** * This is used to fetch the news RSS feed. - * It defaults in CMakeLists.txt to "http://multimc.org/rss.xml" + * It defaults in CMakeLists.txt to "https://multimc.org/rss.xml" */ QString NEWS_RSS_URL; diff --git a/application/MainWindow.cpp b/application/MainWindow.cpp index 4ee49b80..a636f499 100644 --- a/application/MainWindow.cpp +++ b/application/MainWindow.cpp @@ -1568,12 +1568,12 @@ void MainWindow::on_actionReportBug_triggered() void MainWindow::on_actionPatreon_triggered() { - DesktopServices::openUrl(QUrl("http://www.patreon.com/multimc")); + DesktopServices::openUrl(QUrl("https://www.patreon.com/multimc")); } void MainWindow::on_actionMoreNews_triggered() { - DesktopServices::openUrl(QUrl("http://multimc.org/posts.html")); + DesktopServices::openUrl(QUrl("https://multimc.org/posts.html")); } void MainWindow::newsButtonClicked() @@ -1585,7 +1585,7 @@ void MainWindow::newsButtonClicked() } else { - DesktopServices::openUrl(QUrl("http://multimc.org/posts.html")); + DesktopServices::openUrl(QUrl("https://multimc.org/posts.html")); } } diff --git a/application/dialogs/AboutDialog.cpp b/application/dialogs/AboutDialog.cpp index 411f10fc..0b56ebfb 100644 --- a/application/dialogs/AboutDialog.cpp +++ b/application/dialogs/AboutDialog.cpp @@ -124,7 +124,7 @@ AboutDialog::~AboutDialog() void AboutDialog::loadPatronList() { netJob.reset(new NetJob("Patreon Patron List")); - netJob->addNetAction(Net::Download::makeByteArray(QUrl("http://files.multimc.org/patrons.txt"), &dataSink)); + netJob->addNetAction(Net::Download::makeByteArray(QUrl("https://files.multimc.org/patrons.txt"), &dataSink)); connect(netJob.get(), &NetJob::succeeded, this, &AboutDialog::patronListLoaded); netJob->start(); } diff --git a/application/dialogs/AboutDialog.ui b/application/dialogs/AboutDialog.ui index 5e8e3e68..e3cee582 100644 --- a/application/dialogs/AboutDialog.ui +++ b/application/dialogs/AboutDialog.ui @@ -180,7 +180,7 @@ </font> </property> <property name="text"> - <string notr="true"><html><head/><body><p><a href="http://github.com/MultiMC/MultiMC5">http://github.com/MultiMC/MultiMC5</a></p></body></html></string> + <string notr="true"><html><head/><body><p><a href="https://github.com/MultiMC/MultiMC5">https://github.com/MultiMC/MultiMC5</a></p></body></html></string> </property> <property name="alignment"> <set>Qt::AlignCenter</set> diff --git a/application/pages/global/ExternalToolsPage.ui b/application/pages/global/ExternalToolsPage.ui index 5f19898b..e79e9388 100644 --- a/application/pages/global/ExternalToolsPage.ui +++ b/application/pages/global/ExternalToolsPage.ui @@ -63,7 +63,7 @@ <item> <widget class="QLabel" name="jprofilerLink"> <property name="text"> - <string notr="true"><html><head/><body><p><a href="http://www.ej-technologies.com/products/jprofiler/overview.html">http://www.ej-technologies.com/products/jprofiler/overview.html</a></p></body></html></string> + <string notr="true"><html><head/><body><p><a href="https://www.ej-technologies.com/products/jprofiler/overview.html">https://www.ej-technologies.com/products/jprofiler/overview.html</a></p></body></html></string> </property> </widget> </item> @@ -137,7 +137,7 @@ <item> <widget class="QLabel" name="mceditLink"> <property name="text"> - <string notr="true"><html><head/><body><p><a href="http://www.mcedit.net/">http://www.mcedit.net/</a></p></body></html></string> + <string notr="true"><html><head/><body><p><a href="https://www.mcedit.net/">https://www.mcedit.net/</a></p></body></html></string> </property> </widget> </item> |