element-templates: clean up gobject template a bit
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 14 Apr 2011 18:53:16 +0000 (19:53 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 14 Apr 2011 23:24:47 +0000 (00:24 +0100)
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

index 4ef34e6..18183fe 100644 (file)
@@ -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 */