Fix signal description infra for anchorblock.

SVN revision: 47777
This commit is contained in:
Gustavo Lima Chaves 2010-04-05 19:20:48 +00:00
parent 32a79e1c61
commit b15b3376b6
1 changed files with 6 additions and 1 deletions

View File

@ -174,9 +174,14 @@ elm_anchorblock_add(Evas_Object *parent)
elm_entry_entry_set(wd->entry, "");
evas_object_smart_callback_add(wd->entry, "anchor,clicked", _anchor_clicked, obj);
evas_object_smart_callback_add(wd->entry, "anchor,clicked",
_anchor_clicked, obj);
_sizing_eval(obj);
// TODO: convert Elementary to subclassing of Evas_Smart_Class
// TODO: and save some bytes, making descriptions per-class and not instance!
evas_object_smart_callbacks_descriptions_set(obj, _signals);
return obj;
}