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
This commit is contained in:
Mike Blumenkrantz 2015-09-17 16:31:07 -04:00
parent f5657fc6c1
commit 14d52506a0
1 changed files with 4 additions and 4 deletions

View File

@ -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;