mike_m pushed a commit to branch master.

commit 98602e68469576bb857a3a2a9d1e3f725262da8c
Author: Mike McCormack <[email protected]>
Date:   Sun Mar 10 08:10:07 2013 +1100

    contact: Fix warnings
    
    Signed-off-by: Mike McCormack <[email protected]>
---
 src/modules/contact/e_mod_main.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/modules/contact/e_mod_main.c b/src/modules/contact/e_mod_main.c
index 139014b..1e309f4 100644
--- a/src/modules/contact/e_mod_main.c
+++ b/src/modules/contact/e_mod_main.c
@@ -3,7 +3,7 @@
 EAPI E_Module_Api e_modapi = { E_MODULE_API_VERSION, "Contact" };
 
 static void
-_cb_in_left(void *data, int d, double v)
+_cb_in_left(void *data __UNUSED__, int d __UNUSED__, double v __UNUSED__)
 {
    // show PREV window in list from urrent focused window on top of current
    // window but in an inital "off to the right" state in comp
@@ -32,14 +32,14 @@ _cb_in_left(void *data, int d, double v)
 }
 
 static void
-_cb_in_left_go(void *data, int d, double v)
+_cb_in_left_go(void *data __UNUSED__, int d __UNUSED__, double v __UNUSED__)
 {
    // as v > 0 (and heads towards 1.0) flip/slide new window in unbtil v > 1.0
    // and   once over 1.0 just do transition until end
 }
 
 static void
-_cb_in_right(void *data, int d, double v)
+_cb_in_right(void *data __UNUSED__, int d __UNUSED__, double v __UNUSED__)
 {
    // show NEXT window in list from urrent focused window on top of current
    // window but in an inital "off to the right" state in comp
@@ -68,27 +68,27 @@ _cb_in_right(void *data, int d, double v)
 }
 
 static void
-_cb_in_right_go(void *data, int d, double v)
+_cb_in_right_go(void *data __UNUSED__, int d __UNUSED__, double v __UNUSED__)
 {
    // as v > 0 (and heads towards 1.0) flip/slide new window in unbtil v > 1.0
    // and   once over 1.0 just do transition until end
 }
 
 static void
-_cb_in_top(void *data, int d, double v)
+_cb_in_top(void *data __UNUSED__, int d __UNUSED__, double v __UNUSED__)
 {
    // show/populate top controls if not already there and start in offscreen
    // state and beign slide in anim and place controls at final spot
 }
 
 static void
-_cb_in_top_go(void *data, int d, double v)
+_cb_in_top_go(void *data __UNUSED__, int d __UNUSED__, double v __UNUSED__)
 {
    // for now nothing - but animation would be nice for top controls
 }
 
 static void
-_cb_in_bottom(void *data, int d, double v)
+_cb_in_bottom(void *data __UNUSED__, int d __UNUSED__, double v __UNUSED__)
 {
    // force kbd activation if no kbd
    e_policy_kbd_override_set(EINA_TRUE);
@@ -96,7 +96,7 @@ _cb_in_bottom(void *data, int d, double v)
 }
 
 static void
-_cb_in_bottom_go(void *data, int d, double v)
+_cb_in_bottom_go(void *data __UNUSED__, int d __UNUSED__, double v __UNUSED__)
 {
    // for now nothing - but slide animation is nice
 }

-- 

------------------------------------------------------------------------------
Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester  
Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the  
endpoint security space. For insight on selecting the right partner to 
tackle endpoint security challenges, access the full report. 
http://p.sf.net/sfu/symantec-dev2dev

Reply via email to