devilhorns pushed a commit to branch master.
commit 64bc97c53c5c3772595f9d2321f9e19590d8a477
Author: Chris Michael <[email protected]>
Date: Mon Sep 16 11:40:30 2013 +0100
Remove __UNUSED__ from function declaration where parameter is
actually used.
Signed-off-by: Chris Michael <[email protected]>
---
src/lib/elm_widget.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lib/elm_widget.c b/src/lib/elm_widget.c
index 9cd945c..c6d24b7 100644
--- a/src/lib/elm_widget.c
+++ b/src/lib/elm_widget.c
@@ -4799,7 +4799,7 @@ elm_widget_orientation_mode_disabled_set(Evas_Object
*obj, Eina_Bool disabled)
}
static void
-_elm_widget_orientation_mode_disabled_set(Eo *obj __UNUSED__, void *_pd,
va_list *list)
+_elm_widget_orientation_mode_disabled_set(Eo *obj, void *_pd, va_list *list)
{
Eina_Bool disabled = va_arg(*list, int);
int orient_mode = -1;
@@ -4844,7 +4844,7 @@ elm_widget_orientation_set(Evas_Object *obj, int rotation)
}
static void
-_elm_widget_orientation_set(Eo *obj __UNUSED__, void *_pd, va_list *list)
+_elm_widget_orientation_set(Eo *obj, void *_pd, va_list *list)
{
Evas_Object *child;
Eina_List *l;
--