Skip to content

Commit 78ff8fd

Browse files
committed
Use https for all links
Hi all This is a followup to gtk-rs/gtk#1054 Cheers, Stefan
1 parent 0c2767b commit 78ff8fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+58
-58
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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "glib"
3-
documentation = "http://gtk-rs.org/docs/glib/"
4-
homepage = "http://gtk-rs.org/"
3+
documentation = "https://gtk-rs.org/docs/glib/"
4+
homepage = "https://gtk-rs.org/"
55
authors = ["The Gtk-rs Project Developers"]
66
description = "Rust bindings for the GLib library"
77
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions

glib-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "glib-macros"
3-
documentation = "http://gtk-rs.org/docs/glib-macros/"
4-
homepage = "http://gtk-rs.org/"
3+
documentation = "https://gtk-rs.org/docs/glib-macros/"
4+
homepage = "https://gtk-rs.org/"
55
authors = ["The Gtk-rs Project Developers"]
66
description = "Rust bindings for the GLib library, proc macros crate"
77
version = "0.10.0"

glib-macros/src/gboxed_derive.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use proc_macro2::{Ident, TokenStream};
66
use proc_macro_error::abort_call_site;

glib-macros/src/genum_derive.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use heck::{CamelCase, KebabCase, SnakeCase};
66
use proc_macro2::TokenStream;

glib-macros/src/gflags_attribute.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use heck::{CamelCase, KebabCase, SnakeCase};
66
use proc_macro2::TokenStream;

glib-macros/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
extern crate proc_macro;
66

glib-macros/src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use anyhow::{bail, Result};
66
use itertools::Itertools;

glib-macros/tests/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use ::glib_macros::{gflags, GBoxed, GEnum};
66
use glib::prelude::*;

src/boxed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! `IMPL` Boxed wrapper implementation.
66

src/bridged_logging.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
extern crate log as rs_log;
66

src/byte_array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! # Examples
66
//!

src/bytes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use std::borrow::Borrow;

src/checksum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use libc::size_t;

src/closure.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
// TODO: support marshaller.
66

src/date.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use gobject_sys;

src/enums.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use gobject_sys;

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! `Error` binding and helper trait.
66

src/file_error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use error::ErrorDomain;
66
use glib_sys;

src/gobject/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! GObject bindings
66

src/gstring.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use libc;
66
use std::borrow::Borrow;

src/key_file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use auto::KeyFileFlags;
66
use error::Error;

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! # **glib**, **gobject** and **gio** bindings for Rust
66
//!

src/log.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use once_cell::sync::Lazy;

src/main_context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys::{self, gboolean, gpointer};
66
use source::Priority;

src/main_context_channel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use std::collections::VecDeque;

src/main_context_futures.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use futures_core::future::Future;
66
use futures_core::task::{Context, Poll, RawWaker, RawWakerVTable, Waker};

src/object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! `IMPL` Object wrapper implementation and `Object` binding.
66

src/param_spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44
use gobject_sys;
55
use libc;
66
use translate::*;

src/quark.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use std::ffi::CStr;

src/send_unique.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use std::cell::RefCell;
66
use std::ops;

src/shared.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! `IMPL` Shared (reference counted) wrapper implementation.
66

src/signal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! `IMPL` Low level signal support.
66

src/source.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys::{self, gboolean, gpointer};
66
#[cfg(all(not(unix), feature = "dox"))]

src/source_futures.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use futures_channel::{mpsc, oneshot};
66
use futures_core::future::Future;

src/string.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use gobject_sys;

src/subclass/boxed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! Module for registering boxed types for Rust types.
66

src/subclass/interface.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use super::{InitializingType, Property};
66
use glib_sys;

src/subclass/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! Module containing infrastructure for subclassing `GObject`s and registering boxed types.
66
//!

src/subclass/object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! Module that contains all types needed for creating a direct subclass of `GObject`
66
//! or implementing virtual methods of it.

src/subclass/simple.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! This module contains simple instance and class structs to be used for
66
//! `GObject` subclasses that don't require any additional data in these

src/subclass/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! Module that contains the basic infrastructure for subclassing `GObject`.
66

src/thread_pool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use translate::*;

src/time_val.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2015, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib_sys;
66
use std::mem;

src/translate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! Translation between GLib/GLib-based FFI types and their Rust counterparts.
66
//!

src/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! Runtime type information.
66

src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015-2016, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use error::BoolError;
66
use glib_sys;

0 commit comments

Comments
 (0)