File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 60
60
61
61
62
62
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>.
64
64
65
65
This project provides interoperability with various GNOME libraries but doesn't
66
66
distribute any parts of them. Distributing compiled libraries and executables
Original file line number Diff line number Diff line change 2
2
//!
3
3
//! This sample demonstrates how to create `ImageSurface`, draw on it
4
4
//! 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
6
6
7
7
extern crate cairo;
8
8
Original file line number Diff line number Diff line change 16
16
<property name =" can_focus" >False</property >
17
17
<property name =" type_hint" >dialog</property >
18
18
<property name =" program_name" >Glade</property >
19
- <property name =" website" >http ://gtk-rs.org</property >
19
+ <property name =" website" >https ://gtk-rs.org</property >
20
20
<property name =" authors" >James T. Kirk
21
21
Spock
22
22
Leonard McCoy</property >
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ fn build_ui(application: >k::Application) {
95
95
let p = AboutDialog :: new ( ) ;
96
96
p. set_authors ( & [ "gtk-rs developers" ] ) ;
97
97
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" ) ) ;
99
99
p. set_authors ( & [ "Gtk-rs developers" ] ) ;
100
100
p. set_title ( "About!" ) ;
101
101
p. set_transient_for ( Some ( & window) ) ;
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ fn add_actions(
90
90
about. connect_activate ( clone ! ( @weak window => move |_, _| {
91
91
let p = AboutDialog :: new( ) ;
92
92
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" ) ) ;
94
94
p. set_authors( & [ "Gtk-rs developers" ] ) ;
95
95
p. set_title( "About!" ) ;
96
96
p. set_transient_for( Some ( & window) ) ;
You can’t perform that action at this time.
0 commit comments