remove Send+Sync requirement from object. Does not bode well with gtk

This commit is contained in:
Dirk Van Haerenborgh 2018-04-29 13:07:12 +02:00 committed by Sebastian Dröge
parent a401427a0c
commit d74995ee7e

View file

@ -21,7 +21,7 @@ use glib::translate::*;
use properties::*;
pub trait ObjectImpl<T: ObjectType>: Send + Sync + 'static {
pub trait ObjectImpl<T: ObjectType>: 'static {
fn set_property(&self, _obj: &glib::Object, _id: u32, _value: &glib::Value) {
unimplemented!()
}