mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
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:
parent
6d87ece93d
commit
3bed253042
3 changed files with 9 additions and 2 deletions
|
@ -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):
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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; \
|
||||
|
|
Loading…
Reference in a new issue