diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2018-04-17 20:09:44 +0200 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2018-04-17 20:31:55 +0200 |
commit | fcae7cab276c2d3b19bb913ad908b67b7dd33089 (patch) | |
tree | 7008ebc815184309ccc284c9e7e1b05abbb55028 /src/lib/ector/software/ector_software_buffer.c | |
parent | e50b43d02fdb0b608f2c99014357c95a1a746c43 (diff) |
eolian gen: enable constness generation on property getter impls
This changes a lot of things all across the EFL. Previously,
methods tagged @const had both their external prototype and
internal impl generated with const on object, while property
getters only had const on the external API. This is now changed
and it all has const everywhere.
Ref T6859.
Diffstat (limited to '')
-rw-r--r-- | src/lib/ector/software/ector_software_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ector/software/ector_software_buffer.c b/src/lib/ector/software/ector_software_buffer.c index 8afe6c85c4..e8981281f5 100644 --- a/src/lib/ector/software/ector_software_buffer.c +++ b/src/lib/ector/software/ector_software_buffer.c | |||
@@ -281,7 +281,7 @@ _ector_software_buffer_base_ector_buffer_unmap(Eo *obj EINA_UNUSED, Ector_Softwa | |||
281 | } | 281 | } |
282 | 282 | ||
283 | EOLIAN static Ector_Buffer_Flag | 283 | EOLIAN static Ector_Buffer_Flag |
284 | _ector_software_buffer_base_ector_buffer_flags_get(Eo *obj EINA_UNUSED, Ector_Software_Buffer_Base_Data *pd) | 284 | _ector_software_buffer_base_ector_buffer_flags_get(const Eo *obj EINA_UNUSED, Ector_Software_Buffer_Base_Data *pd) |
285 | { | 285 | { |
286 | return ECTOR_BUFFER_FLAG_CPU_READABLE | | 286 | return ECTOR_BUFFER_FLAG_CPU_READABLE | |
287 | ECTOR_BUFFER_FLAG_DRAWABLE | | 287 | ECTOR_BUFFER_FLAG_DRAWABLE | |