elementary: fix massive breakage.
authorcedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 1 Dec 2011 16:53:57 +0000 (16:53 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 1 Dec 2011 16:53:57 +0000 (16:53 +0000)
Someone learned to well from me...

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@65784 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/examples/gengrid_example.c
src/examples/genlist_example_01.c
src/examples/genlist_example_02.c
src/examples/genlist_example_03.c
src/examples/genlist_example_04.c
src/examples/genlist_example_05.c
src/examples/index_example_02.c

index aca7182..43f57e1 100644 (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;
index f60ef41..e916735 100644 (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;
index 8d28977..3f57908 100644 (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;
index efc533e..0672563 100644 (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;
index 3c53b1a..5658636 100644 (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;
index 7e0151b..11ca846 100644 (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;
index 11e20b4..695f7a5 100644 (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;