From cdff97536570d20bd80808f8371652336375554c Mon Sep 17 00:00:00 2001 From: Yeongjong Lee Date: Mon, 28 Oct 2019 18:24:15 -0300 Subject: [PATCH] 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 87a3743..8f9011c 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 /// The name of the native event. /// Delegate to be called by native code on event raising. /// Managed delegate that will be called by evtCaller on event raising. - 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 /// The name of the native library definining the event. /// The name of the native event. /// The delegate to be removed. - protected void RemoveNativeEventHandler(string lib, string key, object evtDelegate) + internal void RemoveNativeEventHandler(string lib, string key, object evtDelegate) { lock (eflBindingEventLock) { -- 2.7.4