gst/gstthread.c: fix docs

Original commit message from CVS:
* gst/gstthread.c:
fix docs
* gst/gstutils.h:
fix GST_BOILERPLATE_FULL to not throw casting errors on C++
This commit is contained in:
Benjamin Otte 2004-03-30 18:02:38 +00:00
parent 6d87ece93d
commit 3bed253042
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
* gst/gstthread.c:
fix docs
* gst/gstutils.h:
fix GST_BOILERPLATE_FULL to not throw casting errors on C++
2004-03-30 Benjamin Otte <otte@gnome.org>
* gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):

View file

@ -299,7 +299,7 @@ gst_thread_new (const gchar * name)
/**
* gst_thread_get_current:
*
* Create a new thread with the given name.
* Gets the current GstThread.
*
* Returns: The current GstThread or NULL if you are not running inside a
* #GstThread.

View file

@ -78,7 +78,7 @@ type_as_function ## _get_type (void) \
(GInstanceInitFunc) type_as_function ## _init \
}; \
object_type = g_type_register_static (parent_type_macro, #type, \
&object_info, 0); \
&object_info, (GTypeFlags) 0); \
additional_initializations (object_type); \
} \
return object_type; \