diff --git a/gstreamer/src/subclass/child_proxy.rs b/gstreamer/src/subclass/child_proxy.rs index bc925306e..373db7288 100644 --- a/gstreamer/src/subclass/child_proxy.rs +++ b/gstreamer/src/subclass/child_proxy.rs @@ -40,8 +40,8 @@ pub trait ChildProxyImpl: super::element::ElementImpl + Send + Sync + 'static { fn get_child_by_index(&self, object: &ChildProxy, index: u32) -> Option; fn get_children_count(&self, object: &ChildProxy) -> u32; - fn child_added(&self, object: &ChildProxy, child: &glib::Object, name: &str); - fn child_removed(&self, object: &ChildProxy, child: &glib::Object, name: &str); + fn child_added(&self, object: &ChildProxy, child: &glib::Object, name: &str) {} + fn child_removed(&self, object: &ChildProxy, child: &glib::Object, name: &str) {} } unsafe impl IsImplementable for ChildProxy {