diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-03-04 18:11:19 +0100 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-03-04 18:11:19 +0100 |
commit | dea2351539372c64be4612e2ecf19037773cd8a8 (patch) | |
tree | 5d47ef929c2a093a2f9fcc4f7cba26933d0365e2 /gst/gstminiobject.c | |
parent | 3b916bf57c27355c0499efb53d590436bb8e1b6c (diff) |
miniobject: remove FIXME
Now that we don't subclass buffers anymore, the FIXME about limited
functionality of the copy function is irrelevant.
Diffstat (limited to 'gst/gstminiobject.c')
-rw-r--r-- | gst/gstminiobject.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gst/gstminiobject.c b/gst/gstminiobject.c index 02784c6e7..907edb9ab 100644 --- a/gst/gstminiobject.c +++ b/gst/gstminiobject.c @@ -111,20 +111,6 @@ gst_mini_object_init (GstMiniObject * mini_object, GType type, gsize size) mini_object->size = size; } -/* FIXME 0.11: Current way of doing the copy makes it impossible - * to currectly chain to the parent classes and do a copy in a - * subclass without knowing all internals of the parent classes. - * - * For 0.11 we should do something like the following: - * - The GstMiniObjectClass::copy() implementation of GstMiniObject - * should call g_type_create_instance() with the type of the source - * object. - * - All GstMiniObjectClass::copy() implementations should as first - * thing chain up to the parent class and then do whatever they need - * to do to copy their type specific data. Note that this way the - * instance_init() functions are called! - */ - /** * gst_mini_object_copy: * @mini_object: the mini-object to copy |