diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-12-05 14:31:22 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-12-05 15:06:34 +0900 |
commit | 207a0cf3e3ce169b2e6400ca4bc1df512ea15a27 (patch) | |
tree | 25ef8280e607308de2e7cbf131c7064a6397291c /src/lib/efl/cxx/efl_part_impl.hh | |
parent | 8cdb3184f8a1f3e5396d953b238ce2e217f0cb1c (diff) |
eo: Move hacky API auto_unref to C only
This API is meant to be used by parts only, and by bindings dealing with
part objects. This patch fixes make check which got broken in the after
the previous one (cxx).
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/cxx/efl_part_impl.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/efl/cxx/efl_part_impl.hh b/src/lib/efl/cxx/efl_part_impl.hh index f40292c6e0..b97dda1457 100644 --- a/src/lib/efl/cxx/efl_part_impl.hh +++ b/src/lib/efl/cxx/efl_part_impl.hh | |||
@@ -8,7 +8,7 @@ | |||
8 | inline ::efl::Object Part::part(::efl::eina::string_view const& name) const \ | 8 | inline ::efl::Object Part::part(::efl::eina::string_view const& name) const \ |
9 | { \ | 9 | { \ |
10 | ::Eo *handle = ::efl_part(_eo_ptr(), name.c_str()); \ | 10 | ::Eo *handle = ::efl_part(_eo_ptr(), name.c_str()); \ |
11 | ::efl_auto_unref_set(handle, false); \ | 11 | ::___efl_auto_unref_set(handle, false); \ |
12 | return ::efl::Object{handle}; \ | 12 | return ::efl::Object{handle}; \ |
13 | } | 13 | } |
14 | 14 | ||