Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

Use https for all links #696

Merged
merged 2 commits into from
Oct 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Zach Oakes <[email protected]>
Zach Ploskey <[email protected]>

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

This project provides interoperability with various GNOME libraries but doesn't
distribute any parts of them. Distributing compiled libraries and executables
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "glib"
documentation = "http://gtk-rs.org/docs/glib/"
homepage = "http://gtk-rs.org/"
documentation = "https://gtk-rs.org/docs/glib/"
homepage = "https://gtk-rs.org/"
authors = ["The Gtk-rs Project Developers"]
description = "Rust bindings for the GLib library"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Alongside GLib bindings, this crate also includes the infrastructure to
subclass `GObject` for extending libraries like GTK+. A code example can
be found in the documentation of this crate in the `subclass` module.

- [Gtk-rs project site](http://gtk-rs.org/)
- [Gtk-rs project site](https://gtk-rs.org/)

- [Online documentation](http://gtk-rs.org/docs/)
- [Online documentation](https://gtk-rs.org/docs-src/)

- [Readme](https://github.com/gtk-rs/gtk/blob/master/README.md) in our
[main repo](https://github.com/gtk-rs/gtk)
Expand Down
4 changes: 2 additions & 2 deletions glib-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "glib-macros"
documentation = "http://gtk-rs.org/docs/glib-macros/"
homepage = "http://gtk-rs.org/"
documentation = "https://gtk-rs.org/docs/glib-macros/"
homepage = "https://gtk-rs.org/"
authors = ["The Gtk-rs Project Developers"]
description = "Rust bindings for the GLib library, proc macros crate"
version = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion glib-macros/src/gboxed_derive.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use proc_macro2::{Ident, TokenStream};
use proc_macro_error::abort_call_site;
Expand Down
2 changes: 1 addition & 1 deletion glib-macros/src/genum_derive.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use heck::{CamelCase, KebabCase, SnakeCase};
use proc_macro2::TokenStream;
Expand Down
2 changes: 1 addition & 1 deletion glib-macros/src/gflags_attribute.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use heck::{CamelCase, KebabCase, SnakeCase};
use proc_macro2::TokenStream;
Expand Down
2 changes: 1 addition & 1 deletion glib-macros/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

extern crate proc_macro;

Expand Down
2 changes: 1 addition & 1 deletion glib-macros/src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use anyhow::{bail, Result};
use itertools::Itertools;
Expand Down
2 changes: 1 addition & 1 deletion glib-macros/tests/test.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use ::glib_macros::{gflags, GBoxed, GEnum};
use glib::prelude::*;
Expand Down
2 changes: 1 addition & 1 deletion src/boxed.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! `IMPL` Boxed wrapper implementation.

Expand Down
2 changes: 1 addition & 1 deletion src/bridged_logging.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

extern crate log as rs_log;

Expand Down
2 changes: 1 addition & 1 deletion src/byte_array.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! # Examples
//!
Expand Down
2 changes: 1 addition & 1 deletion src/bytes.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2013-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use std::borrow::Borrow;
Expand Down
2 changes: 1 addition & 1 deletion src/checksum.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2013-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use libc::size_t;
Expand Down
2 changes: 1 addition & 1 deletion src/closure.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2013-2017, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

// TODO: support marshaller.

Expand Down
2 changes: 1 addition & 1 deletion src/date.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2017, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use gobject_sys;
Expand Down
2 changes: 1 addition & 1 deletion src/enums.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use gobject_sys;
Expand Down
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! `Error` binding and helper trait.

Expand Down
2 changes: 1 addition & 1 deletion src/file_error.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use error::ErrorDomain;
use glib_sys;
Expand Down
2 changes: 1 addition & 1 deletion src/gobject/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! GObject bindings

Expand Down
2 changes: 1 addition & 1 deletion src/gstring.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use libc;
use std::borrow::Borrow;
Expand Down
2 changes: 1 addition & 1 deletion src/key_file.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use auto::KeyFileFlags;
use error::Error;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2013-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! # **glib**, **gobject** and **gio** bindings for Rust
//!
Expand Down
2 changes: 1 addition & 1 deletion src/log.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use once_cell::sync::Lazy;
Expand Down
2 changes: 1 addition & 1 deletion src/main_context.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys::{self, gboolean, gpointer};
use source::Priority;
Expand Down
2 changes: 1 addition & 1 deletion src/main_context_channel.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use std::collections::VecDeque;
Expand Down
2 changes: 1 addition & 1 deletion src/main_context_futures.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use futures_core::future::Future;
use futures_core::task::{Context, Poll, RawWaker, RawWakerVTable, Waker};
Expand Down
2 changes: 1 addition & 1 deletion src/object.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

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

Expand Down
2 changes: 1 addition & 1 deletion src/param_spec.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
use gobject_sys;
use libc;
use translate::*;
Expand Down
2 changes: 1 addition & 1 deletion src/quark.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use std::ffi::CStr;
Expand Down
2 changes: 1 addition & 1 deletion src/send_unique.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use std::cell::RefCell;
use std::ops;
Expand Down
2 changes: 1 addition & 1 deletion src/shared.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

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

Expand Down
2 changes: 1 addition & 1 deletion src/signal.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! `IMPL` Low level signal support.

Expand Down
2 changes: 1 addition & 1 deletion src/source.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2013-2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys::{self, gboolean, gpointer};
#[cfg(all(not(unix), feature = "dox"))]
Expand Down
2 changes: 1 addition & 1 deletion src/source_futures.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use futures_channel::{mpsc, oneshot};
use futures_core::future::Future;
Expand Down
2 changes: 1 addition & 1 deletion src/string.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use gobject_sys;
Expand Down
2 changes: 1 addition & 1 deletion src/subclass/boxed.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

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

Expand Down
2 changes: 1 addition & 1 deletion src/subclass/interface.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use super::{InitializingType, Property};
use glib_sys;
Expand Down
2 changes: 1 addition & 1 deletion src/subclass/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2017-2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! Module containing infrastructure for subclassing `GObject`s and registering boxed types.
//!
Expand Down
2 changes: 1 addition & 1 deletion src/subclass/object.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2017-2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! Module that contains all types needed for creating a direct subclass of `GObject`
//! or implementing virtual methods of it.
Expand Down
2 changes: 1 addition & 1 deletion src/subclass/simple.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2017-2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! This module contains simple instance and class structs to be used for
//! `GObject` subclasses that don't require any additional data in these
Expand Down
2 changes: 1 addition & 1 deletion src/subclass/types.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2017-2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

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

Expand Down
2 changes: 1 addition & 1 deletion src/thread_pool.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use translate::*;
Expand Down
2 changes: 1 addition & 1 deletion src/time_val.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2013-2015, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib_sys;
use std::mem;
Expand Down
2 changes: 1 addition & 1 deletion src/translate.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! Translation between GLib/GLib-based FFI types and their Rust counterparts.
//!
Expand Down
2 changes: 1 addition & 1 deletion src/types.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! Runtime type information.

Expand Down
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2015-2016, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use error::BoolError;
use glib_sys;
Expand Down
Loading