summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-04-16 14:07:44 +0100
committerCarl Hetherington <cth@carlh.net>2019-04-16 14:07:44 +0100
commitee83945f23b5d9c3ec06f0658a7ccca14a2c7890 (patch)
treea11e77efc2bef1de3420629c37e30211d79e3082 /src
parent123c801b4da72b612c5935796bbd1826bf63887f (diff)
Fix a few links from http -> https.
Diffstat (limited to 'src')
-rw-r--r--src/wx/about_dialog.cc2
-rw-r--r--src/wx/update_dialog.cc4
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<string> 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);
}