Combobox: Fix according to the new (old) eo_add syntax.

This commit is contained in:
Tom Hacohen 2016-03-11 12:38:26 +00:00
parent 3433d3f1a8
commit 1e1faf5aec
1 changed files with 1 additions and 1 deletions

View File

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