From ee83945f23b5d9c3ec06f0658a7ccca14a2c7890 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 16 Apr 2019 14:07:44 +0100 Subject: Fix a few links from http -> https. --- src/wx/about_dialog.cc | 2 +- src/wx/update_dialog.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc index d5a369791..9e790dacb 100644 --- a/src/wx/about_dialog.cc +++ b/src/wx/about_dialog.cc @@ -74,7 +74,7 @@ AboutDialog::AboutDialog (wxWindow* parent) wxHyperlinkCtrl* h = new wxHyperlinkCtrl ( this, wxID_ANY, wxT ("dcpomatic.com"), - wxT ("http://dcpomatic.com") + wxT ("https://dcpomatic.com") ); sizer->Add (h, wxSizerFlags().Centre().Border(wxALL, 8)); diff --git a/src/wx/update_dialog.cc b/src/wx/update_dialog.cc index a4da39e18..e864564ac 100644 --- a/src/wx/update_dialog.cc +++ b/src/wx/update_dialog.cc @@ -45,13 +45,13 @@ UpdateDialog::UpdateDialog (wxWindow* parent, optional stable, optional< if (stable) { add_label_to_sizer (table, this, _("Stable version ") + std_to_wx (stable.get ()), true); - wxHyperlinkCtrl* h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/download", "http://dcpomatic.com/download"); + wxHyperlinkCtrl* h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/download", "https://dcpomatic.com/download"); table->Add (h); } if (test) { add_label_to_sizer (table, this, _("Test version ") + std_to_wx (test.get ()), true); - wxHyperlinkCtrl* h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/test-download", "http://dcpomatic.com/test-download"); + wxHyperlinkCtrl* h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/test-download", "https://dcpomatic.com/test-download"); table->Add (h); } -- cgit v1.2.3