patch from zub in #e to fix example building

SVN revision: 64399
This commit is contained in:
Mike Blumenkrantz 2011-10-25 22:28:35 +00:00
parent 4ebd44ab96
commit d3d411f43f
8 changed files with 12 additions and 11 deletions

View File

@ -606,7 +606,7 @@ elm_main(int argc __UNUSED__,
gic.item_style = "default";
gic.func.label_get = _grid_label_get;
gic.func.content_get = _grid_icon_get;
gic.func.content_get = _grid_content_get;
gic.func.state_get = _grid_state_get;
gic.func.del = _grid_del;

View File

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

View File

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

View File

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

View File

@ -289,13 +289,13 @@ elm_main(int argc __UNUSED__, char **argv __UNUSED__)
_itc.item_style = "double_label";
_itc.func.label_get = _item_label_get;
_itc.func.content_get = _item_icon_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.content_get = _group_icon_get;
_itc_group.func.content_get = _group_content_get;
_itc_group.func.state_get = NULL;
_itc_group.func.del = NULL;

View File

@ -337,19 +337,19 @@ elm_main(int argc __UNUSED__, char **argv __UNUSED__)
_itc.item_style = "default";
_itc.func.label_get = _item_label_get;
_itc.func.content_get = _item_icon_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.content_get = _parent_icon_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.content_get = _favorite_icon_get;
_itfav.func.content_get = _favorite_content_get;
_itfav.func.state_get = NULL;
_itfav.func.del = NULL;

View File

@ -116,7 +116,7 @@ elm_main(int argc __UNUSED__,
gic.item_style = "default";
gic.func.label_get = _grid_label_get;
gic.func.content_get = _grid_icon_get;
gic.func.content_get = _grid_content_get;
gic.func.state_get = NULL;
gic.func.del = NULL;

View File

@ -30,6 +30,7 @@ _generation_error_cb(void *data __UNUSED__, Evas_Object *o __UNUSED__, void *eve
int
elm_main(int argc __UNUSED__, char **argv __UNUSED__)
{
#if 0
Evas_Object *win, *bg;
Evas_Object *thumb;
Ethumb_Client *client;
@ -78,7 +79,7 @@ elm_main(int argc __UNUSED__, char **argv __UNUSED__)
elm_run(); /* and run the program now, starting to handle all
* events, etc. */
elm_shutdown(); /* clean up and shut down */
#endif
/* exit code */
return 0;
}