summaryrefslogtreecommitdiff
path: root/gst/gstelementfactory.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-10-08 20:46:22 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-10-08 20:46:55 +0100
commit534e077c1889321e7be539a1f3afff5891c20f4d (patch)
treec88dd2859203d5251833c4c42d4d6cf9487c71c8 /gst/gstelementfactory.c
parentac40ab45b318750e6e79378ad910a4d1dd3f3822 (diff)
elementfactory: don't export private _gst_elementclass_factory quark
Diffstat (limited to 'gst/gstelementfactory.c')
-rw-r--r--gst/gstelementfactory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/gstelementfactory.c b/gst/gstelementfactory.c
index 647674ecf9..d0bfb6f359 100644
--- a/gst/gstelementfactory.c
+++ b/gst/gstelementfactory.c
@@ -77,7 +77,7 @@ static void gst_element_factory_cleanup (GstElementFactory * factory);
/* static guint gst_element_factory_signals[LAST_SIGNAL] = { 0 }; */
/* this is defined in gstelement.c */
-extern GQuark _gst_elementclass_factory;
+extern GQuark __gst_elementclass_factory;
#define _do_init \
{ \
@@ -219,7 +219,7 @@ gst_element_register (GstPlugin * plugin, const gchar * name, guint rank,
factory = GST_ELEMENT_FACTORY_CAST (existing_feature);
factory->type = type;
existing_feature->loaded = TRUE;
- g_type_set_qdata (type, _gst_elementclass_factory, factory);
+ g_type_set_qdata (type, __gst_elementclass_factory, factory);
gst_object_unref (existing_feature);
return TRUE;
}
@@ -232,7 +232,7 @@ gst_element_register (GstPlugin * plugin, const gchar * name, guint rank,
g_type_name (type));
/* provide info needed during class structure setup */
- g_type_set_qdata (type, _gst_elementclass_factory, factory);
+ g_type_set_qdata (type, __gst_elementclass_factory, factory);
klass = GST_ELEMENT_CLASS (g_type_class_ref (type));
#if 0
/* FIXME */