mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
gst/gstminiobject.c: Remove 3 do-nothing methods.
Original commit message from CVS: * gst/gstminiobject.c: (gst_mini_object_get_type): Remove 3 do-nothing methods.
This commit is contained in:
parent
463f0b09f3
commit
d661fd332c
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-06-27 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstminiobject.c: (gst_mini_object_get_type):
|
||||
Remove 3 do-nothing methods.
|
||||
|
||||
2007-06-27 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
Patch by: Tim Angus <tim at ngus dot net>
|
||||
|
|
|
@ -45,9 +45,11 @@ static GstAllocTrace *_gst_mini_object_trace;
|
|||
|
||||
#define DEBUG_REFCOUNT
|
||||
|
||||
#if 0
|
||||
static void gst_mini_object_base_init (gpointer g_class);
|
||||
static void gst_mini_object_base_finalize (gpointer g_class);
|
||||
static void gst_mini_object_class_init (gpointer g_class, gpointer class_data);
|
||||
#endif
|
||||
static void gst_mini_object_init (GTypeInstance * instance, gpointer klass);
|
||||
|
||||
static void gst_value_mini_object_init (GValue * value);
|
||||
|
@ -78,9 +80,13 @@ gst_mini_object_get_type (void)
|
|||
};
|
||||
GTypeInfo mini_object_info = {
|
||||
sizeof (GstMiniObjectClass),
|
||||
#if 0
|
||||
gst_mini_object_base_init,
|
||||
gst_mini_object_base_finalize,
|
||||
gst_mini_object_class_init,
|
||||
#else
|
||||
NULL, NULL, NULL,
|
||||
#endif
|
||||
NULL,
|
||||
NULL,
|
||||
sizeof (GstMiniObject),
|
||||
|
@ -108,6 +114,7 @@ gst_mini_object_get_type (void)
|
|||
return _gst_mini_object_type;
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void
|
||||
gst_mini_object_base_init (gpointer g_class)
|
||||
{
|
||||
|
@ -125,6 +132,7 @@ gst_mini_object_class_init (gpointer g_class, gpointer class_data)
|
|||
{
|
||||
/* do nothing */
|
||||
}
|
||||
#endif
|
||||
|
||||
static void
|
||||
gst_mini_object_init (GTypeInstance * instance, gpointer klass)
|
||||
|
|
Loading…
Reference in a new issue