From: Jean Guyomarc'h Date: Tue, 13 Oct 2015 16:21:36 +0000 (+0200) Subject: ecore_cocoa: remove unused events X-Git-Tag: upstream/1.20.0~8066 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=616ad954fc47d1a3f27927edc930d45d169956cb;p=platform%2Fupstream%2Fefl.git ecore_cocoa: remove unused events --- diff --git a/src/lib/ecore_cocoa/Ecore_Cocoa.h b/src/lib/ecore_cocoa/Ecore_Cocoa.h index bd0e502..40baa07 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; EAPI extern int ECORE_COCOA_EVENT_EXPOSE; EAPI extern int ECORE_COCOA_EVENT_WINDOW_DESTROY; -EAPI extern int ECORE_COCOA_EVENT_DATA_SOURCE_SEND; -EAPI extern int ECORE_COCOA_EVENT_SELECTION_DATA_READY; /** * @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 a481181..9592664 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; EAPI int ECORE_COCOA_EVENT_RESIZE = 0; EAPI int ECORE_COCOA_EVENT_EXPOSE = 0; EAPI int ECORE_COCOA_EVENT_WINDOW_DESTROY = 0; -EAPI int ECORE_COCOA_EVENT_DATA_SOURCE_SEND = 0; -EAPI int ECORE_COCOA_EVENT_SELECTION_DATA_READY = 0; static int _ecore_cocoa_init_count = 0; @@ -55,8 +53,6 @@ ecore_cocoa_init(void) ECORE_COCOA_EVENT_RESIZE = ecore_event_type_new(); ECORE_COCOA_EVENT_EXPOSE = ecore_event_type_new(); ECORE_COCOA_EVENT_WINDOW_DESTROY = ecore_event_type_new(); - ECORE_COCOA_EVENT_DATA_SOURCE_SEND = ecore_event_type_new(); - ECORE_COCOA_EVENT_SELECTION_DATA_READY = ecore_event_type_new(); /* Init the Application handler */