mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
fix glib2 warning
Original commit message from CVS: fix glib2 warning
This commit is contained in:
parent
2408c618b2
commit
f62b6204a7
1 changed files with 3 additions and 3 deletions
|
@ -99,6 +99,9 @@ gst_object_class_init (GstObjectClass *klass)
|
|||
|
||||
parent_class = g_type_class_ref (G_TYPE_OBJECT);
|
||||
|
||||
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_object_set_property);
|
||||
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_object_get_property);
|
||||
|
||||
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_NAME,
|
||||
g_param_spec_string ("name", "Name", "The name of the object",
|
||||
NULL, G_PARAM_READWRITE));
|
||||
|
@ -120,9 +123,6 @@ gst_object_class_init (GstObjectClass *klass)
|
|||
// FIXME!!!
|
||||
// klass->signal_object = g_object_new(gst_signal_object_get_type (,NULL));
|
||||
|
||||
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_object_set_property);
|
||||
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_object_get_property);
|
||||
|
||||
gobject_class->dispose = gst_object_dispose;
|
||||
gobject_class->finalize = gst_object_finalize;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue