more autistic cleanliness in functions/names/defines

Original commit message from CVS:
more autistic cleanliness in functions/names/defines
This commit is contained in:
Thomas Vander Stichele 2005-07-14 09:35:10 +00:00
parent 021769bc28
commit 050df450ef
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/udp/gstudpsrc.c: (gst_udpsrc_get_type),
(gst_udpsrc_class_init):
more autistic cleanliness in functions/names/defines
2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
* ext/aalib/gstaasink.c: (gst_aasink_get_type),

View file

@ -130,7 +130,8 @@ gst_udpsrc_get_type (void)
};
udpsrc_type =
g_type_register_static (GST_TYPE_PUSHSRC, "GstUDPSrc", &udpsrc_info, 0);
g_type_register_static (GST_TYPE_PUSH_SRC, "GstUDPSrc", &udpsrc_info,
0);
g_type_add_interface_static (udpsrc_type, GST_TYPE_URI_HANDLER,
&urihandler_info);
@ -162,7 +163,7 @@ gst_udpsrc_class_init (GstUDPSrc * klass)
gstbasesrc_class = (GstBaseSrcClass *) klass;
gstpushsrc_class = (GstPushSrcClass *) klass;
parent_class = g_type_class_ref (GST_TYPE_PUSHSRC);
parent_class = g_type_class_ref (GST_TYPE_PUSH_SRC);
gobject_class->set_property = gst_udpsrc_set_property;
gobject_class->get_property = gst_udpsrc_get_property;