vitorsousa pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1179058017e566e5700f6d366b7f1d75a11ab60c

commit 1179058017e566e5700f6d366b7f1d75a11ab60c
Author: Lauro Moura <lauromo...@expertisesolutions.com.br>
Date:   Thu Apr 19 14:01:49 2018 -0300

    efl_mono: Fix after prop get const change
---
 src/examples/efl_mono/example_numberwrapper.c | 2 +-
 src/tests/efl_mono/libefl_mono_native_test.c  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/examples/efl_mono/example_numberwrapper.c 
b/src/examples/efl_mono/example_numberwrapper.c
index 27bc3f36a6..52a5af93ef 100644
--- a/src/examples/efl_mono/example_numberwrapper.c
+++ b/src/examples/efl_mono/example_numberwrapper.c
@@ -57,7 +57,7 @@ void _example_numberwrapper_number_set_call(Eo *obj, 
EINA_UNUSED Example_Numberw
    example_numberwrapper_number_set(obj, n);
 }
 
-int _example_numberwrapper_number_get(EINA_UNUSED Eo *obj, 
Example_Numberwrapper_Data *pd)
+int _example_numberwrapper_number_get(EINA_UNUSED const Eo *obj, 
Example_Numberwrapper_Data *pd)
 {
    return pd->number;
 }
diff --git a/src/tests/efl_mono/libefl_mono_native_test.c 
b/src/tests/efl_mono/libefl_mono_native_test.c
index b14fab86c7..ca2933df5d 100644
--- a/src/tests/efl_mono/libefl_mono_native_test.c
+++ b/src/tests/efl_mono/libefl_mono_native_test.c
@@ -3611,7 +3611,7 @@ void _test_numberwrapper_number_set(EINA_UNUSED Eo *obj, 
Test_Numberwrapper_Data
    pd->number = n;
 }
 
-int _test_numberwrapper_number_get(EINA_UNUSED Eo *obj, 
Test_Numberwrapper_Data *pd)
+int _test_numberwrapper_number_get(EINA_UNUSED const Eo *obj, 
Test_Numberwrapper_Data *pd)
 {
    return pd->number;
 }
@@ -3766,7 +3766,7 @@ void _test_testing_call_format_cb(EINA_UNUSED Eo *obj, 
EINA_UNUSED Test_Testing_
 /* Class Properties */
 static int _test_testing_klass_prop = 0;
 
-int _test_testing_klass_prop_get(Eo *klass, EINA_UNUSED void *pd)
+int _test_testing_klass_prop_get(const Eo *klass, EINA_UNUSED void *pd)
 {
     EINA_LOG_ERR("FAIL on GET");
    if (klass != test_testing_class_get())

-- 


Reply via email to