From fb0222ea67322a4e743593a3ed6741571d5aede7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 14 Apr 2011 19:53:16 +0100 Subject: element-templates: clean up gobject template a bit Remove pointless g_return_if_fail (G_IS_FOO (obj)) checks in vfunc implementations. Comment out unused variables to avoid warnings with gcc 4.6. --- tools/element-templates/gobject | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) (limited to 'tools/element-templates') diff --git a/tools/element-templates/gobject b/tools/element-templates/gobject index 4ef34e6c2..18183feaf 100644 --- a/tools/element-templates/gobject +++ b/tools/element-templates/gobject @@ -23,10 +23,7 @@ void gst_replace_set_property (GObject * object, guint property_id, const GValue * value, GParamSpec * pspec) { - GstReplace *replace; - - g_return_if_fail (GST_IS_REPLACE (object)); - replace = GST_REPLACE (object); + /* GstReplace *replace = GST_REPLACE (object); */ switch (property_id) { default: @@ -39,10 +36,7 @@ void gst_replace_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec) { - GstReplace *replace; - - g_return_if_fail (GST_IS_REPLACE (object)); - replace = GST_REPLACE (object); + /* GstReplace *replace = GST_REPLACE (object); */ switch (property_id) { default: @@ -54,10 +48,7 @@ gst_replace_get_property (GObject * object, guint property_id, void gst_replace_dispose (GObject * object) { - GstReplace *replace; - - g_return_if_fail (GST_IS_REPLACE (object)); - replace = GST_REPLACE (object); + /* GstReplace *replace = GST_REPLACE (object); */ /* clean up as possible. may be called multiple times */ @@ -67,10 +58,7 @@ gst_replace_dispose (GObject * object) void gst_replace_finalize (GObject * object) { - GstReplace *replace; - - g_return_if_fail (GST_IS_REPLACE (object)); - replace = GST_REPLACE (object); + /* GstReplace *replace = GST_REPLACE (object); */ /* clean up object here */ -- cgit v1.2.1