diff --git a/ChangeLog b/ChangeLog index e1d275ae37..be3577eea8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-03-12 Ronald S. Bultje + + * gst/gstindex.c: (gst_index_factory_new): + Oops, this is a gobject, not a gstobject. + 2005-03-12 Ronald S. Bultje * docs/gst/gstreamer-sections.txt: diff --git a/gst/gstindex.c b/gst/gstindex.c index 5cabd80ef3..17127a9e6e 100644 --- a/gst/gstindex.c +++ b/gst/gstindex.c @@ -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);