elementary: fix massive breakage.

Someone learned to well from me...


SVN revision: 65784
This commit is contained in:
Cedric BAIL 2011-12-01 16:53:57 +00:00
parent 13c14120f2
commit fbe34af38f
7 changed files with 10 additions and 10 deletions

View File

@ -605,7 +605,7 @@ elm_main(int argc __UNUSED__,
evas_object_smart_callback_add(sl, "changed", _page_change_cb, grid);
gic.item_style = "default";
gic.func.label_get = _grid_label_get;
gic.func.text_get = _grid_label_get;
gic.func.content_get = _grid_content_get;
gic.func.state_get = _grid_state_get;
gic.func.del = _grid_del;

View File

@ -58,7 +58,7 @@ elm_main(int argc __UNUSED__, char **argv __UNUSED__)
evas_object_show(bg);
_itc.item_style = "default";
_itc.func.label_get = _item_label_get;
_itc.func.text_get = _item_label_get;
_itc.func.content_get = _item_content_get;
_itc.func.state_get = NULL;
_itc.func.del = NULL;

View File

@ -115,7 +115,7 @@ elm_main(int argc __UNUSED__, char **argv __UNUSED__)
list = elm_genlist_add(win);
_itc.item_style = "default";
_itc.func.label_get = _item_label_get;
_itc.func.text_get = _item_label_get;
_itc.func.content_get = _item_content_get;
_itc.func.state_get = NULL;
_itc.func.del = NULL;

View File

@ -103,7 +103,7 @@ elm_main(int argc __UNUSED__, char **argv __UNUSED__)
evas_object_show(box);
_itc.item_style = "double_label";
_itc.func.label_get = _item_label_get;
_itc.func.text_get = _item_label_get;
_itc.func.content_get = _item_content_get;
_itc.func.state_get = NULL;
_itc.func.del = NULL;

View File

@ -288,13 +288,13 @@ elm_main(int argc __UNUSED__, char **argv __UNUSED__)
evas_object_show(box);
_itc.item_style = "double_label";
_itc.func.label_get = _item_label_get;
_itc.func.text_get = _item_label_get;
_itc.func.content_get = _item_content_get;
_itc.func.state_get = NULL;
_itc.func.del = NULL;
_itc_group.item_style = "group_index";
_itc_group.func.label_get = _group_label_get;
_itc_group.func.text_get = _group_label_get;
_itc_group.func.content_get = _group_content_get;
_itc_group.func.state_get = NULL;
_itc_group.func.del = NULL;

View File

@ -336,19 +336,19 @@ elm_main(int argc __UNUSED__, char **argv __UNUSED__)
evas_object_show(box);
_itc.item_style = "default";
_itc.func.label_get = _item_label_get;
_itc.func.text_get = _item_label_get;
_itc.func.content_get = _item_content_get;
_itc.func.state_get = NULL;
_itc.func.del = NULL;
_itp.item_style = "default";
_itp.func.label_get = _parent_label_get;
_itp.func.text_get = _parent_label_get;
_itp.func.content_get = _parent_content_get;
_itp.func.state_get = NULL;
_itp.func.del = NULL;
_itfav.item_style = "default";
_itfav.func.label_get = _favorite_label_get;
_itfav.func.text_get = _favorite_label_get;
_itfav.func.content_get = _favorite_content_get;
_itfav.func.state_get = NULL;
_itfav.func.del = NULL;

View File

@ -115,7 +115,7 @@ elm_main(int argc __UNUSED__,
elm_gengrid_item_size_set(grid, 150, 150);
gic.item_style = "default";
gic.func.label_get = _grid_label_get;
gic.func.text_get = _grid_label_get;
gic.func.content_get = _grid_content_get;
gic.func.state_get = NULL;
gic.func.del = NULL;