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 68070dbbdffbe875f4b4fb5f62a89ecb56a7a21f..fd6120dfe0f30289009b652f5873cd79544e955a 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 075af283517dd8d2cbdc3c5e25d2335f3c06533b..61b6c9c1cffc1ce1c7abb397e9cc8f9abae52465 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 8a245a01e27fc36cdfc64a5883283c66f67fa15d..35ab42293198b82f47c55fd102198571eb81d1c0 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;