mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 11:15:31 +00:00
gst/gstindex.c: Oops, this is a gobject, not a gstobject.
Original commit message from CVS: * gst/gstindex.c: (gst_index_factory_new): Oops, this is a gobject, not a gstobject.
This commit is contained in:
parent
ae77261146
commit
f478e2c0c4
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-03-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/gstindex.c: (gst_index_factory_new):
|
||||
Oops, this is a gobject, not a gstobject.
|
||||
|
||||
2005-03-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* docs/gst/gstreamer-sections.txt:
|
||||
|
|
|
@ -915,7 +915,7 @@ gst_index_factory_new (const gchar * name, const gchar * longdesc, GType type)
|
|||
factory = GST_INDEX_FACTORY (g_object_new (GST_TYPE_INDEX_FACTORY, NULL));
|
||||
GST_PLUGIN_FEATURE_NAME (factory) = g_strdup (name);
|
||||
} else {
|
||||
gst_object_ref (GST_OBJECT (factory));
|
||||
g_object_ref (G_OBJECT (factory));
|
||||
}
|
||||
|
||||
g_free (factory->longdesc);
|
||||
|
|
Loading…
Reference in a new issue