lauromoura pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=7f2458b20d9a6ad4842e9a76f54fbcade25e5a77
commit 7f2458b20d9a6ad4842e9a76f54fbcade25e5a77 Author: Yeongjong Lee <[email protected]> Date: Mon Oct 28 18:24:15 2019 -0300 mono: encapsulate internal Add/RemoveNativeEventHandler Summary: Depends on D10337 Test Plan: meson setup -Dbindings=mono,cxx -Dmono-beta=true Reviewers: lauromoura, segfaultxavi, Jaehyun_Cho Reviewed By: lauromoura Subscribers: cedric, #reviewers, woohyun, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D10341 --- src/bindings/mono/eo_mono/EoWrapper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bindings/mono/eo_mono/EoWrapper.cs b/src/bindings/mono/eo_mono/EoWrapper.cs index 87a3743a3e..8f9011cefe 100644 --- a/src/bindings/mono/eo_mono/EoWrapper.cs +++ b/src/bindings/mono/eo_mono/EoWrapper.cs @@ -256,7 +256,7 @@ public abstract class EoWrapper : IWrapper, IDisposable /// <param name="key">The name of the native event.</param> /// <param name="evtCaller">Delegate to be called by native code on event raising.</param> /// <param name="evtDelegate">Managed delegate that will be called by evtCaller on event raising.</param> - protected void AddNativeEventHandler(string lib, string key, Efl.EventCb evtCaller, object evtDelegate) + internal void AddNativeEventHandler(string lib, string key, Efl.EventCb evtCaller, object evtDelegate) { lock (eflBindingEventLock) { @@ -294,7 +294,7 @@ public abstract class EoWrapper : IWrapper, IDisposable /// <param name="lib">The name of the native library definining the event.</param> /// <param name="key">The name of the native event.</param> /// <param name="evtDelegate">The delegate to be removed.</param> - protected void RemoveNativeEventHandler(string lib, string key, object evtDelegate) + internal void RemoveNativeEventHandler(string lib, string key, object evtDelegate) { lock (eflBindingEventLock) { --
