From 52a1c4dc803a485566efda9cf312f7da03286f75 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Wed, 19 Sep 2012 21:01:01 +0000 Subject: [PATCH] elementary: Fix unused variable warnings Signed-off-by: Mike McCormack SVN revision: 76876 --- src/lib/elm_plug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_plug.c b/src/lib/elm_plug.c index 8320444..3a524b0 100644 --- a/src/lib/elm_plug.c +++ b/src/lib/elm_plug.c @@ -19,9 +19,9 @@ EVAS_SMART_SUBCLASS_NEW Elm_Widget_Smart_Class, elm_widget_smart_class_get, _smart_callbacks); static void -_sizing_eval(Evas_Object *obj) +_sizing_eval(Evas_Object *obj __UNUSED__) { - Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1; + //Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1; //TODO: get socket object size //this reset plug's min/max size -- 2.7.4