summaryrefslogtreecommitdiff
path: root/gst/gstchildproxy.h
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2012-06-11 10:59:49 +0200
committerStefan Sauer <ensonic@users.sf.net>2012-06-11 18:25:18 +0200
commit19e5fc54b7ba6652129218c179e5075a1d3f7c09 (patch)
tree219a44289f3a3add6d7b0a08fefc3ac2791cdb2c /gst/gstchildproxy.h
parent26682f7c7aceb10782c3d8d9020ccc1e5dd3cb51 (diff)
childproxy: use GstChildProxy instead of GObject on the public api
Fix usage and also cleanup gst_object api use on gobjects.
Diffstat (limited to 'gst/gstchildproxy.h')
-rw-r--r--gst/gstchildproxy.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gst/gstchildproxy.h b/gst/gstchildproxy.h
index 94e2011b14..0abce64af5 100644
--- a/gst/gstchildproxy.h
+++ b/gst/gstchildproxy.h
@@ -77,27 +77,27 @@ GObject * gst_child_proxy_get_child_by_index (GstChildProxy * parent, guint inde
gboolean gst_child_proxy_lookup (GObject *object, const gchar *name,
GObject **target, GParamSpec **pspec);
-void gst_child_proxy_get_property (GObject * object, const gchar *name,
+void gst_child_proxy_get_property (GstChildProxy * object, const gchar *name,
GValue *value);
-void gst_child_proxy_get_valist (GObject * object,
+void gst_child_proxy_get_valist (GstChildProxy * object,
const gchar * first_property_name,
va_list var_args);
-void gst_child_proxy_get (GObject * object,
+void gst_child_proxy_get (GstChildProxy * object,
const gchar * first_property_name,
...) G_GNUC_NULL_TERMINATED;
-void gst_child_proxy_set_property (GObject * object, const gchar *name,
+void gst_child_proxy_set_property (GstChildProxy * object, const gchar *name,
const GValue *value);
-void gst_child_proxy_set_valist (GObject* object,
+void gst_child_proxy_set_valist (GstChildProxy* object,
const gchar * first_property_name,
va_list var_args);
-void gst_child_proxy_set (GObject * object,
+void gst_child_proxy_set (GstChildProxy * object,
const gchar * first_property_name,
...) G_GNUC_NULL_TERMINATED;
-void gst_child_proxy_child_added (GObject * object, GObject * child,
+void gst_child_proxy_child_added (GstChildProxy * object, GObject * child,
const gchar *name);
-void gst_child_proxy_child_removed (GObject * object, GObject * child,
+void gst_child_proxy_child_removed (GstChildProxy * object, GObject * child,
const gchar *name);
G_END_DECLS