Enlightenment CVS committal

Author  : lok
Project : e_modules
Module  : mixer

Dir     : e_modules/mixer


Modified Files:
        e_mod_keybindings.c 


Log Message:
Oops I forgot a debug function here

===================================================================
RCS file: /cvs/e/e_modules/mixer/e_mod_keybindings.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_keybindings.c 11 Nov 2006 19:58:58 -0000      1.1
+++ e_mod_keybindings.c 14 Nov 2006 00:38:09 -0000      1.2
@@ -219,28 +219,10 @@
 
 /*************** Private ********************/
 
-void
-dbg_key(E_Config_Binding_Key key)
-{
-   printf("context   : %d\n"
-         "modifiers : %d\n"
-         "key       : %s\n"
-         "action    : %s\n"
-         "params    : %s\n"
-         "any_mod   : %c\n\n",
-         key.context,
-         key.modifiers,
-         key.key,
-         key.action,
-         key.params,
-         key.any_mod);
-}
-
 ACT_FN_GO(decrease_volume)
 {
    Instance *inst;
 
-   dbg_key(mixer_config->decrease_vol_key);
    inst = evas_list_data(mixer_config->instances);
    if (!inst) return;
    mixer_vol_decrease(inst);
@@ -250,7 +232,6 @@
 {
    Instance *inst;
 
-   dbg_key(mixer_config->increase_vol_key);
    inst = evas_list_data(mixer_config->instances);
    if (!inst) return;
    mixer_vol_increase(inst);
@@ -259,9 +240,7 @@
 ACT_FN_GO(mute)
 {
    Instance *inst;
-   Config_Item *ci;
    
-   dbg_key(mixer_config->mute_key);
    inst = evas_list_data(mixer_config->instances);
    if (!inst) return;
    mixer_mute_toggle(inst);



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to