allow no name for thread and pipeline

Original commit message from CVS:
allow no name for thread and pipeline
This commit is contained in:
Thomas Vander Stichele 2004-08-02 17:33:54 +00:00
parent 1a666a1e93
commit b18efd0d22
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/gst.defs:
allow no name for thread and pipeline as well
2004-07-16 Johan Dahlin <johan@gnome.org> 2004-07-16 Johan Dahlin <johan@gnome.org>
* pkgconfig/gst-python.pc.in (pyexecdir): Add and remove comments * pkgconfig/gst-python.pc.in (pyexecdir): Add and remove comments

2
common

@ -1 +1 @@
Subproject commit 8f16cd236828a8bb7be51696029e0e24b7a6c517 Subproject commit 14f44a56213628dcfdf8ca77159ba0f9622f6102

View file

@ -3586,7 +3586,7 @@
(is-constructor-of "GstPipeline") (is-constructor-of "GstPipeline")
(return-type "GstElement*") (return-type "GstElement*")
(parameters (parameters
'("const-gchar*" "name") '("const-gchar*" "name" (null-ok) (default "NULL"))
) )
) )
@ -5375,7 +5375,7 @@
(is-constructor-of "GstThread") (is-constructor-of "GstThread")
(return-type "GstElement*") (return-type "GstElement*")
(parameters (parameters
'("const-gchar*" "name") '("const-gchar*" "name" (null-ok) (default "NULL"))
) )
) )