clouseau, ephoto, ensure: Applied genlist/gengrid changes. label_get

-> text_get.


SVN revision: 65760
This commit is contained in:
Daniel Juyung Seo 2011-12-01 08:32:43 +00:00
parent e315adfa44
commit 5dc7b16681
1 changed files with 4 additions and 4 deletions

View File

@ -58,7 +58,7 @@ _first_file_entry_find(Ephoto_Thumb_Browser *tb)
} }
static char * static char *
_ephoto_thumb_item_label_get(void *data, Evas_Object *obj __UNUSED__, const char *part __UNUSED__) _ephoto_thumb_item_text_get(void *data, Evas_Object *obj __UNUSED__, const char *part __UNUSED__)
{ {
Ephoto_Entry *e = data; Ephoto_Entry *e = data;
return strdup(e->label); return strdup(e->label);
@ -133,7 +133,7 @@ _ephoto_thumb_item_del(void *data __UNUSED__, Evas_Object *obj __UNUSED__)
static const Elm_Gengrid_Item_Class _ephoto_thumb_up_class = { static const Elm_Gengrid_Item_Class _ephoto_thumb_up_class = {
"ephoto-up", "ephoto-up",
{ {
_ephoto_thumb_item_label_get, _ephoto_thumb_item_text_get,
NULL, NULL,
NULL, NULL,
_ephoto_thumb_item_del _ephoto_thumb_item_del
@ -143,7 +143,7 @@ static const Elm_Gengrid_Item_Class _ephoto_thumb_up_class = {
static const Elm_Gengrid_Item_Class _ephoto_thumb_dir_class = { static const Elm_Gengrid_Item_Class _ephoto_thumb_dir_class = {
"ephoto-album-preview", "ephoto-album-preview",
{ {
_ephoto_thumb_item_label_get, _ephoto_thumb_item_text_get,
_ephoto_thumb_dir_icon_get, _ephoto_thumb_dir_icon_get,
_ephoto_thumb_dir_state_get, _ephoto_thumb_dir_state_get,
_ephoto_thumb_item_del _ephoto_thumb_item_del
@ -153,7 +153,7 @@ static const Elm_Gengrid_Item_Class _ephoto_thumb_dir_class = {
static const Elm_Gengrid_Item_Class _ephoto_thumb_file_class = { static const Elm_Gengrid_Item_Class _ephoto_thumb_file_class = {
"thumb", "thumb",
{ {
_ephoto_thumb_item_label_get, _ephoto_thumb_item_text_get,
_ephoto_thumb_file_icon_get, _ephoto_thumb_file_icon_get,
NULL, NULL,
_ephoto_thumb_item_del _ephoto_thumb_item_del