ecore_cocoa: don't make ecore_cocoa_feed_events() a public API

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Jean Guyomarc'h 2015-10-15 14:06:13 +02:00 committed by Cedric BAIL
parent 907f14c003
commit 2d7870083c
4 changed files with 6 additions and 6 deletions

View File

@ -129,9 +129,6 @@ EAPI int ecore_cocoa_init(void);
*/
EAPI int ecore_cocoa_shutdown(void);
// XXX Why is this public?
EAPI Eina_Bool ecore_cocoa_feed_events(void *anEvent);
/*============================================================================*
* Screen *

View File

@ -172,8 +172,8 @@ _ecore_cocoa_event_key(NSEvent *event,
return ev;
}
EAPI Eina_Bool
ecore_cocoa_feed_events(void *anEvent)
Eina_Bool
_ecore_cocoa_feed_events(void *anEvent)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(anEvent, EINA_FALSE);

View File

@ -90,7 +90,7 @@ _ecore_cocoa_run_loop_cb(void *data EINA_UNUSED)
/* Some events shall be handled by Ecore (like single non-command keys).
* If we dispatch all events right to NSApplication, it will complain
* with NSBeep() when an event is not authorized */
to_super = ecore_cocoa_feed_events(anEvent);
to_super = _ecore_cocoa_feed_events(anEvent);
if (to_super)
[super sendEvent:anEvent];
}

View File

@ -65,5 +65,8 @@ struct _Ecore_Cocoa_Window
/* Internal init */
Eina_Bool _ecore_cocoa_window_init(void);
Eina_Bool _ecore_cocoa_feed_events(void *anEvent);
#endif