changed names from guchar* to gchar*, which makes C++ happy, and is, um, correct.

Original commit message from CVS:
changed names from guchar* to gchar*, which makes C++ happy, and is, um, correct.
This commit is contained in:
Erik Walthinsen 2001-10-20 23:15:29 +00:00
parent 469e99dc90
commit 455567482c
4 changed files with 4 additions and 4 deletions

View file

@ -114,7 +114,7 @@ gst_pipeline_init (GstPipeline *pipeline)
* Returns: newly created GstPipeline
*/
GstElement*
gst_pipeline_new (const guchar *name)
gst_pipeline_new (const gchar *name)
{
return gst_elementfactory_make ("pipeline", name);
}

View file

@ -57,7 +57,7 @@ struct _GstPipelineClass {
};
GType gst_pipeline_get_type (void);
GstElement* gst_pipeline_new (const guchar *name);
GstElement* gst_pipeline_new (const gchar *name);
#define gst_pipeline_destroy(pipeline) gst_object_destroy(GST_OBJECT(pipeline))
void gst_pipeline_iterate (GstPipeline *pipeline);

View file

@ -227,7 +227,7 @@ gst_thread_get_property (GObject *object, guint prop_id, GValue *value, GParamSp
* Returns: The new thread
*/
GstElement*
gst_thread_new (const guchar *name)
gst_thread_new (const gchar *name)
{
return gst_elementfactory_make ("thread", name);
}

View file

@ -82,7 +82,7 @@ struct _GstThreadClass {
GType gst_thread_get_type (void);
GstElement* gst_thread_new (const guchar *name);
GstElement* gst_thread_new (const gchar *name);
#ifdef __cplusplus
}