From 736d376cf1e8ecb42490202cad1e7f9f99639a12 Mon Sep 17 00:00:00 2001 From: Jean Guyomarc'h Date: Thu, 15 Oct 2015 14:06:13 +0200 Subject: [PATCH] ecore_cocoa: don't make ecore_cocoa_feed_events() a public API Change-Id: Ia1403f5cc1535274e5c62359b3a99f147d41608b Signed-off-by: Cedric BAIL --- src/lib/ecore_cocoa/Ecore_Cocoa.h | 3 --- src/lib/ecore_cocoa/ecore_cocoa.m | 4 ++-- src/lib/ecore_cocoa/ecore_cocoa_app.m | 2 +- src/lib/ecore_cocoa/ecore_cocoa_private.h | 3 +++ 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/ecore_cocoa/Ecore_Cocoa.h b/src/lib/ecore_cocoa/Ecore_Cocoa.h index 106b347..2a20050 100644 --- a/src/lib/ecore_cocoa/Ecore_Cocoa.h +++ b/src/lib/ecore_cocoa/Ecore_Cocoa.h @@ -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 * diff --git a/src/lib/ecore_cocoa/ecore_cocoa.m b/src/lib/ecore_cocoa/ecore_cocoa.m index 03e1488..968a802 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa.m +++ b/src/lib/ecore_cocoa/ecore_cocoa.m @@ -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); diff --git a/src/lib/ecore_cocoa/ecore_cocoa_app.m b/src/lib/ecore_cocoa/ecore_cocoa_app.m index 648bf87..b3bf1af 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa_app.m +++ b/src/lib/ecore_cocoa/ecore_cocoa_app.m @@ -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]; } diff --git a/src/lib/ecore_cocoa/ecore_cocoa_private.h b/src/lib/ecore_cocoa/ecore_cocoa_private.h index 9952278..535e08a 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa_private.h +++ b/src/lib/ecore_cocoa/ecore_cocoa_private.h @@ -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 -- 2.7.4