discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=14d52506a0d6860e893351aee9fd095dbaad6a31

commit 14d52506a0d6860e893351aee9fd095dbaad6a31
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Thu Sep 17 16:31:07 2015 -0400

    rename E_Comp_Grab_Cb to E_Comp_Cb
    
    this is a super generic global callback type which will never be used
    elsewhere, so rename it to make it potentially useful in other places
---
 src/bin/e_comp.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bin/e_comp.h b/src/bin/e_comp.h
index 80c08f1..2c9c9d6 100644
--- a/src/bin/e_comp.h
+++ b/src/bin/e_comp.h
@@ -54,7 +54,7 @@ typedef enum _E_Layer
 extern E_API int E_EVENT_COMPOSITOR_DISABLE;
 extern E_API int E_EVENT_COMPOSITOR_ENABLE;
 
-typedef void (*E_Comp_Grab_Cb)(void);
+typedef void (*E_Comp_Cb)(void);
 
 typedef struct E_Comp_Screen_Iface
 {
@@ -143,9 +143,9 @@ struct _E_Comp
    unsigned int    input_key_grabs;
    unsigned int    input_mouse_grabs;
 
-   E_Comp_Grab_Cb        grab_cb;
-   E_Comp_Grab_Cb        bindings_grab_cb;
-   E_Comp_Grab_Cb        bindings_ungrab_cb;
+   E_Comp_Cb        grab_cb;
+   E_Comp_Cb        bindings_grab_cb;
+   E_Comp_Cb        bindings_ungrab_cb;
 
    Eina_Bool       gl : 1;
    Eina_Bool       grabbed : 1;

-- 


Reply via email to