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:
Ronald S. Bultje 2005-03-12 20:07:28 +00:00
parent ae77261146
commit f478e2c0c4
2 changed files with 6 additions and 1 deletions

View file

@ -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:

View file

@ -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);