From f281ea223af17cb930258957b6e3123fb0c5cbe2 Mon Sep 17 00:00:00 2001 From: Sungho Kwak Date: Thu, 14 Feb 2013 17:12:03 +0900 Subject: [PATCH] [cbhm_helper] add __UNUSED__ tag for unused parameter Change-Id: I95bd723067dfae047379b438d015c79794d5b5ec --- src/modules/ctxpopup_copypasteUI/cbhm_helper.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/ctxpopup_copypasteUI/cbhm_helper.c b/src/modules/ctxpopup_copypasteUI/cbhm_helper.c index ff188a5..37c7300 100644 --- a/src/modules/ctxpopup_copypasteUI/cbhm_helper.c +++ b/src/modules/ctxpopup_copypasteUI/cbhm_helper.c @@ -134,7 +134,7 @@ _cbhm_reply_get(Ecore_X_Window xwin, Ecore_X_Atom property, Ecore_X_Atom *x_data #endif int -_cbhm_item_count_get(Evas_Object *obj) +_cbhm_item_count_get(Evas_Object *obj __UNUSED__) { #ifdef HAVE_ELEMENTARY_X char *ret, count; @@ -183,10 +183,10 @@ _cbhm_item_count_get(Evas_Object *obj) #ifdef HAVE_ELEMENTARY_X Eina_Bool -_cbhm_item_get(Evas_Object *obj, int index, Ecore_X_Atom *data_type, char **buf) +_cbhm_item_get(Evas_Object *obj __UNUSED__, int index, Ecore_X_Atom *data_type, char **buf) #else Eina_Bool -_cbhm_item_get(Evas_Object *obj, int index, void *data_type, char **buf) +_cbhm_item_get(Evas_Object *obj __UNUSED__, int index __UNUSED__, void *data_type, char **buf) #endif { -- 2.7.4