func _pan_min_get, setting the parameter obj as unused
authorhelen <helen>
Fri, 26 Nov 2010 13:35:30 +0000 (13:35 +0000)
committerhelen <helen@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 26 Nov 2010 13:35:30 +0000 (13:35 +0000)
In this functions, the first parameter obj is not used, adding
__UNUSED__ to them

SVN revision: 55011

src/lib/elm_genlist.c
src/lib/elm_map.c
src/lib/elm_photocam.c

index 68070db..fd6120d 100644 (file)
@@ -1988,7 +1988,7 @@ _pan_max_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y)
 }
 
 static void
-_pan_min_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y)
+_pan_min_get(Evas_Object *obj __UNUSED__, Evas_Coord *x, Evas_Coord *y)
 {
    if (x) *x = 0;
    if (y) *y = 0;
index 075af28..61b6c9c 100644 (file)
@@ -1238,7 +1238,7 @@ _pan_max_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y)
 }
 
 static void
-_pan_min_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y)
+_pan_min_get(Evas_Object *obj __UNUSED__, Evas_Coord *x, Evas_Coord *y)
 {
    if (x) *x = 0;
    if (y) *y = 0;
index 8a245a0..35ab422 100644 (file)
@@ -818,7 +818,7 @@ _pan_max_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y)
 }
 
 static void
-_pan_min_get(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y)
+_pan_min_get(Evas_Object *obj __UNUSED__, Evas_Coord *x, Evas_Coord *y)
 {
    if (x) *x = 0;
    if (y) *y = 0;