summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-03-07 10:23:48 +0000
committerTom Hacohen <tom@stosb.com>2016-03-07 10:25:10 +0000
commit8c7c8b32416849889324b7cace58fa09680cfa2a (patch)
tree956e8ca92832fd4024ae173dbeeb9ae2ffc8ccb6
parentf9ba80ab33e0b94dad7ec103e6d261a644f7835f (diff)
downloadefl-8c7c8b32416849889324b7cace58fa09680cfa2a.tar.gz
Eo: get rid of Eo_Event2.
The hack is still there, but much cleaner now.
-rw-r--r--src/lib/eo/Eo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h
index 936c8c8275..51b253f0a6 100644
--- a/src/lib/eo/Eo.h
+++ b/src/lib/eo/Eo.h
@@ -154,7 +154,7 @@ enum _Eo_Op_Type
typedef enum _Eo_Op_Type Eo_Op_Type;
/** XXX: Hack until fixed in Eolian */
-typedef struct _Eo_Event Eo_Event2;
+typedef struct _Eo_Event Eo_Event;
/**
* @typedef Eo_Event_Cb
*
@@ -166,7 +166,7 @@ typedef struct _Eo_Event Eo_Event2;
* @param event_info additional data passed with the event.
* @return #EO_CALLBACK_STOP to stop calling additional callbacks for the event, #EO_CALLBACK_CONTINUE to continue.
*/
-typedef Eina_Bool (*Eo_Event_Cb)(void *data, const Eo_Event2 *event);
+typedef Eina_Bool (*Eo_Event_Cb)(void *data, const Eo_Event *event);
#include "eo_base.eo.h"
#define EO_CLASS EO_BASE_CLASS