diff options
-rw-r--r-- | src/lib/eo/eo_base.eo | 2 | ||||
-rw-r--r-- | src/lib/eo/eo_base_class.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/eo/eo_base.eo b/src/lib/eo/eo_base.eo index 29a1531bc9..2dfd6abc99 100644 --- a/src/lib/eo/eo_base.eo +++ b/src/lib/eo/eo_base.eo | |||
@@ -140,7 +140,7 @@ abstract Eo.Base () | |||
140 | @in data: const(void)*; [[the data to set]] | 140 | @in data: const(void)*; [[the data to set]] |
141 | } | 141 | } |
142 | } | 142 | } |
143 | key_data_get { | 143 | key_data_get @const { |
144 | [[Get generic data from object.]] | 144 | [[Get generic data from object.]] |
145 | params { | 145 | params { |
146 | @in key: const(char)*; [[the key associated with the data]] | 146 | @in key: const(char)*; [[the key associated with the data]] |
diff --git a/src/lib/eo/eo_base_class.c b/src/lib/eo/eo_base_class.c index 065c77eae8..665f684af4 100644 --- a/src/lib/eo/eo_base_class.c +++ b/src/lib/eo/eo_base_class.c | |||
@@ -77,7 +77,7 @@ _eo_base_key_data_set(Eo *obj, Eo_Base_Data *pd, | |||
77 | } | 77 | } |
78 | 78 | ||
79 | EOLIAN static void * | 79 | EOLIAN static void * |
80 | _eo_base_key_data_get(Eo *obj EINA_UNUSED, Eo_Base_Data *pd, const char *key) | 80 | _eo_base_key_data_get(const Eo *obj EINA_UNUSED, Eo_Base_Data *pd, const char *key) |
81 | { | 81 | { |
82 | /* We don't really change it... */ | 82 | /* We don't really change it... */ |
83 | Eo_Generic_Data_Node *node; | 83 | Eo_Generic_Data_Node *node; |