diff options
author | Jean Guyomarc'h <jean.guyomarch@openwide.fr> | 2015-10-13 18:25:01 +0200 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-12-01 12:15:32 -0800 |
commit | 1ab2b14cfb494ab19d75bbff1a9986c36b887fcd (patch) | |
tree | 9805c8f0ea0dc3694600e54a4b0abda3ecb02aac /src/lib/ecore_cocoa | |
parent | 616ad954fc47d1a3f27927edc930d45d169956cb (diff) |
ecore_cocoa: remove ECORE_COCOA_EVENT_EXPOSE
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Diffstat (limited to 'src/lib/ecore_cocoa')
-rw-r--r-- | src/lib/ecore_cocoa/Ecore_Cocoa.h | 1 | ||||
-rw-r--r-- | src/lib/ecore_cocoa/ecore_cocoa.m | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/ecore_cocoa/Ecore_Cocoa.h b/src/lib/ecore_cocoa/Ecore_Cocoa.h index 40baa07541..27ae045a38 100644 --- a/src/lib/ecore_cocoa/Ecore_Cocoa.h +++ b/src/lib/ecore_cocoa/Ecore_Cocoa.h | |||
@@ -72,7 +72,6 @@ EAPI extern int ECORE_COCOA_EVENT_LOST_FOCUS; | |||
72 | /** Event triggered when a window is resized */ | 72 | /** Event triggered when a window is resized */ |
73 | EAPI extern int ECORE_COCOA_EVENT_RESIZE; | 73 | EAPI extern int ECORE_COCOA_EVENT_RESIZE; |
74 | 74 | ||
75 | EAPI extern int ECORE_COCOA_EVENT_EXPOSE; | ||
76 | EAPI extern int ECORE_COCOA_EVENT_WINDOW_DESTROY; | 75 | EAPI extern int ECORE_COCOA_EVENT_WINDOW_DESTROY; |
77 | 76 | ||
78 | /** | 77 | /** |
diff --git a/src/lib/ecore_cocoa/ecore_cocoa.m b/src/lib/ecore_cocoa/ecore_cocoa.m index 9592664bea..a06222130b 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa.m +++ b/src/lib/ecore_cocoa/ecore_cocoa.m | |||
@@ -18,7 +18,6 @@ | |||
18 | EAPI int ECORE_COCOA_EVENT_GOT_FOCUS = 0; | 18 | EAPI int ECORE_COCOA_EVENT_GOT_FOCUS = 0; |
19 | EAPI int ECORE_COCOA_EVENT_LOST_FOCUS = 0; | 19 | 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; | ||
22 | EAPI int ECORE_COCOA_EVENT_WINDOW_DESTROY = 0; | 21 | EAPI int ECORE_COCOA_EVENT_WINDOW_DESTROY = 0; |
23 | 22 | ||
24 | static int _ecore_cocoa_init_count = 0; | 23 | static int _ecore_cocoa_init_count = 0; |
@@ -51,7 +50,6 @@ ecore_cocoa_init(void) | |||
51 | ECORE_COCOA_EVENT_GOT_FOCUS = ecore_event_type_new(); | 50 | ECORE_COCOA_EVENT_GOT_FOCUS = ecore_event_type_new(); |
52 | ECORE_COCOA_EVENT_LOST_FOCUS = ecore_event_type_new(); | 51 | ECORE_COCOA_EVENT_LOST_FOCUS = ecore_event_type_new(); |
53 | ECORE_COCOA_EVENT_RESIZE = ecore_event_type_new(); | 52 | ECORE_COCOA_EVENT_RESIZE = ecore_event_type_new(); |
54 | ECORE_COCOA_EVENT_EXPOSE = ecore_event_type_new(); | ||
55 | ECORE_COCOA_EVENT_WINDOW_DESTROY = ecore_event_type_new(); | 53 | ECORE_COCOA_EVENT_WINDOW_DESTROY = ecore_event_type_new(); |
56 | 54 | ||
57 | 55 | ||