diff options
author | Jean Guyomarc'h <jean.guyomarch@openwide.fr> | 2015-10-13 18:21:36 +0200 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-12-01 12:15:32 -0800 |
commit | 616ad954fc47d1a3f27927edc930d45d169956cb (patch) | |
tree | e942eccf634d9fae2c45fd527ff5cce3a95c6ad0 /src/lib/ecore_cocoa | |
parent | 52506cf214af22a3fa15f9bffdc9c8def6f151a4 (diff) |
ecore_cocoa: remove unused events
Diffstat (limited to 'src/lib/ecore_cocoa')
-rw-r--r-- | src/lib/ecore_cocoa/Ecore_Cocoa.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_cocoa/ecore_cocoa.m | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/lib/ecore_cocoa/Ecore_Cocoa.h b/src/lib/ecore_cocoa/Ecore_Cocoa.h index bd0e50246a..40baa07541 100644 --- a/src/lib/ecore_cocoa/Ecore_Cocoa.h +++ b/src/lib/ecore_cocoa/Ecore_Cocoa.h | |||
@@ -74,8 +74,6 @@ EAPI extern int ECORE_COCOA_EVENT_RESIZE; | |||
74 | 74 | ||
75 | EAPI extern int ECORE_COCOA_EVENT_EXPOSE; | 75 | EAPI extern int ECORE_COCOA_EVENT_EXPOSE; |
76 | EAPI extern int ECORE_COCOA_EVENT_WINDOW_DESTROY; | 76 | EAPI extern int ECORE_COCOA_EVENT_WINDOW_DESTROY; |
77 | EAPI extern int ECORE_COCOA_EVENT_DATA_SOURCE_SEND; | ||
78 | EAPI extern int ECORE_COCOA_EVENT_SELECTION_DATA_READY; | ||
79 | 77 | ||
80 | /** | 78 | /** |
81 | * @struct _Ecore_Cocoa_Event_Video_Resize | 79 | * @struct _Ecore_Cocoa_Event_Video_Resize |
diff --git a/src/lib/ecore_cocoa/ecore_cocoa.m b/src/lib/ecore_cocoa/ecore_cocoa.m index a4811813ab..9592664bea 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa.m +++ b/src/lib/ecore_cocoa/ecore_cocoa.m | |||
@@ -20,8 +20,6 @@ EAPI int ECORE_COCOA_EVENT_LOST_FOCUS = 0; | |||
20 | EAPI int ECORE_COCOA_EVENT_RESIZE = 0; | 20 | EAPI int ECORE_COCOA_EVENT_RESIZE = 0; |
21 | EAPI int ECORE_COCOA_EVENT_EXPOSE = 0; | 21 | EAPI int ECORE_COCOA_EVENT_EXPOSE = 0; |
22 | EAPI int ECORE_COCOA_EVENT_WINDOW_DESTROY = 0; | 22 | EAPI int ECORE_COCOA_EVENT_WINDOW_DESTROY = 0; |
23 | EAPI int ECORE_COCOA_EVENT_DATA_SOURCE_SEND = 0; | ||
24 | EAPI int ECORE_COCOA_EVENT_SELECTION_DATA_READY = 0; | ||
25 | 23 | ||
26 | static int _ecore_cocoa_init_count = 0; | 24 | static int _ecore_cocoa_init_count = 0; |
27 | 25 | ||
@@ -55,8 +53,6 @@ ecore_cocoa_init(void) | |||
55 | ECORE_COCOA_EVENT_RESIZE = ecore_event_type_new(); | 53 | ECORE_COCOA_EVENT_RESIZE = ecore_event_type_new(); |
56 | ECORE_COCOA_EVENT_EXPOSE = ecore_event_type_new(); | 54 | ECORE_COCOA_EVENT_EXPOSE = ecore_event_type_new(); |
57 | ECORE_COCOA_EVENT_WINDOW_DESTROY = ecore_event_type_new(); | 55 | ECORE_COCOA_EVENT_WINDOW_DESTROY = ecore_event_type_new(); |
58 | ECORE_COCOA_EVENT_DATA_SOURCE_SEND = ecore_event_type_new(); | ||
59 | ECORE_COCOA_EVENT_SELECTION_DATA_READY = ecore_event_type_new(); | ||
60 | 56 | ||
61 | 57 | ||
62 | /* Init the Application handler */ | 58 | /* Init the Application handler */ |