Skip to content

Commit 225591d

Browse files
committed
Use https for all links
Hi all This is a followup to gtk-rs/gtk#1054 Cheers, Stefan
1 parent 5d38aff commit 225591d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Zach Oakes <[email protected]>
6060
Zach Ploskey <[email protected]>
6161

6262
The Gtk-rs Project is licensed under the MIT license, see the LICENSE file
63-
or <http://opensource.org/licenses/MIT>.
63+
or <https://opensource.org/licenses/MIT>.
6464

6565
This project provides interoperability with various GNOME libraries but doesn't
6666
distribute any parts of them. Distributing compiled libraries and executables

src/bin/cairo_png.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! This sample demonstrates how to create `ImageSurface`, draw on it
44
//! and then save result to PNG file.
5-
//! Analog of C# example http://www.mgsloan.com/cairo_tut/stroke.cs
5+
//! Analog of C# example https://web.archive.org/web/20130729155927/http://www.mgsloan.com/cairo_tut/stroke.cs
66
77
extern crate cairo;
88

src/bin/gtktest.glade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<property name="can_focus">False</property>
1717
<property name="type_hint">dialog</property>
1818
<property name="program_name">Glade</property>
19-
<property name="website">http://gtk-rs.org</property>
19+
<property name="website">https://gtk-rs.org</property>
2020
<property name="authors">James T. Kirk
2121
Spock
2222
Leonard McCoy</property>

src/bin/menu_bar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fn build_ui(application: &gtk::Application) {
9595
let p = AboutDialog::new();
9696
p.set_authors(&["gtk-rs developers"]);
9797
p.set_website_label(Some("gtk-rs"));
98-
p.set_website(Some("http://gtk-rs.org"));
98+
p.set_website(Some("https://gtk-rs.org"));
9999
p.set_authors(&["Gtk-rs developers"]);
100100
p.set_title("About!");
101101
p.set_transient_for(Some(&window));

src/bin/menu_bar_system.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ fn add_actions(
9090
about.connect_activate(clone!(@weak window => move |_, _| {
9191
let p = AboutDialog::new();
9292
p.set_website_label(Some("gtk-rs"));
93-
p.set_website(Some("http://gtk-rs.org"));
93+
p.set_website(Some("https://gtk-rs.org"));
9494
p.set_authors(&["Gtk-rs developers"]);
9595
p.set_title("About!");
9696
p.set_transient_for(Some(&window));

0 commit comments

Comments
 (0)