From db6a6543b45926b9763745b570fdad10f9288f8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 29 Nov 2018 00:22:43 +0200 Subject: [PATCH] Update for some more glib-rs API changes --- examples/src/bin/decodebin.rs | 2 +- examples/src/bin/encodebin.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/src/bin/decodebin.rs b/examples/src/bin/decodebin.rs index cbfceb257..efb707f52 100644 --- a/examples/src/bin/decodebin.rs +++ b/examples/src/bin/decodebin.rs @@ -44,7 +44,7 @@ struct ErrorValue(Arc>>); impl glib::subclass::boxed::BoxedType for ErrorValue { const NAME: &'static str = "ErrorValue"; - glib_boxed_get_type!(); + glib_boxed_type!(); } #[cfg(feature = "v1_10")] diff --git a/examples/src/bin/encodebin.rs b/examples/src/bin/encodebin.rs index 2ae0b5b38..213457394 100644 --- a/examples/src/bin/encodebin.rs +++ b/examples/src/bin/encodebin.rs @@ -47,7 +47,7 @@ struct ErrorValue(Arc>>); impl glib::subclass::boxed::BoxedType for ErrorValue { const NAME: &'static str = "ErrorValue"; - glib_boxed_get_type!(); + glib_boxed_type!(); } #[cfg(feature = "v1_10")]