lauromoura pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a3eb4670f1f0f89dd9c7f31b82467aaf2fb0ec48
commit a3eb4670f1f0f89dd9c7f31b82467aaf2fb0ec48 Author: Yeongjong Lee <[email protected]> Date: Thu Oct 10 11:15:03 2019 -0300 mono: encapsulate internal efl_all members 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/D10347 --- src/bindings/mono/efl_mono/efl_all.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bindings/mono/efl_mono/efl_all.cs b/src/bindings/mono/efl_mono/efl_all.cs index e57da1b80e..1ea57df70d 100644 --- a/src/bindings/mono/efl_mono/efl_all.cs +++ b/src/bindings/mono/efl_mono/efl_all.cs @@ -33,7 +33,7 @@ static class UnsafeNativeMethods _evas_init = new Efl.Eo.FunctionWrapper<init_func_delegate>(efl.Libs.Evas, "evas_init"); } - public static void evas_init() + internal static void evas_init() { _evas_init.Value.Delegate(); } @@ -52,7 +52,7 @@ public static class All private set; } - public static readonly object InitLock = new object(); + internal static readonly object InitLock = new object(); public static void Init(Efl.Csharp.Components components = Efl.Csharp.Components.Basic) { --
