tasn pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=a462b1d404b316eddb22e350667b93c1a13805a4

commit a462b1d404b316eddb22e350667b93c1a13805a4
Author: Tom Hacohen <t...@stosb.com>
Date:   Fri Mar 11 12:38:26 2016 +0000

    Combobox: Fix according to the new (old) eo_add syntax.
---
 src/lib/elc_combobox.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elc_combobox.c b/src/lib/elc_combobox.c
index fe3f4a3..65e8205 100644
--- a/src/lib/elc_combobox.c
+++ b/src/lib/elc_combobox.c
@@ -369,7 +369,7 @@ _elm_combobox_multiple_selection_set(Eo *obj, 
Elm_Combobox_Data *pd,
    if (enabled)
      {
         // This is multibuttonentry object that will take over the MBE call
-        eo_add(&pd->mbe,ELM_MULTIBUTTONENTRY_CLASS, obj);
+        pd->mbe = eo_add(ELM_MULTIBUTTONENTRY_CLASS, obj);
         evas_object_size_hint_weight_set(pd->mbe, EVAS_HINT_EXPAND, 
EVAS_HINT_EXPAND);
         evas_object_size_hint_align_set(pd->mbe, EVAS_HINT_FILL, 
EVAS_HINT_FILL);
         eo_event_callback_array_add(elm_multibuttonentry_entry_get(pd->mbe), 
entry_callbacks(), obj);

-- 


Reply via email to