efl_mono: Fix after prop get const change

This commit is contained in:
Lauro Moura 2018-04-19 14:01:49 -03:00
parent cf359629a5
commit 1179058017
2 changed files with 3 additions and 3 deletions

View File

@ -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;
}

View File

@ -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())