Removed two unused variables.
authorTilman Sauerbeck <tilman@code-monkey.de>
Sun, 29 Aug 2004 15:56:35 +0000 (15:56 +0000)
committerTilman Sauerbeck <tilman@code-monkey.de>
Sun, 29 Aug 2004 15:56:35 +0000 (15:56 +0000)
src/rb_evas_object.c

index 6a4c5748588d8b6d62f5ced33c3b6f7236c69d2b..4487d1d3d25fef660f0fb12b6c30d5f063f0ba39 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas_object.c 105 2004-08-29 15:45:48Z tilman $
+ * $Id: rb_evas_object.c 106 2004-08-29 15:56:35Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
@@ -466,8 +466,6 @@ static VALUE c_stack_below (VALUE self, VALUE target)
  */
 static VALUE c_above_get (VALUE self)
 {
-       Evas_Object *o;
-
        GET_OBJ (self, RbEvasObject, e);
 
        return TO_EVAS_OBJECT (evas_object_above_get (e->real));
@@ -482,8 +480,6 @@ static VALUE c_above_get (VALUE self)
  */
 static VALUE c_below_get (VALUE self)
 {
-       Evas_Object *o;
-
        GET_OBJ (self, RbEvasObject, e);
 
        return TO_EVAS_OBJECT (evas_object_below_get (e->real));