Remove a lot of warnings.

SVN revision: 52424
This commit is contained in:
titan 2010-09-18 20:18:43 +00:00 committed by titan
parent 35c4b294bd
commit 574483bb47
2 changed files with 6 additions and 14 deletions

View File

@ -215,7 +215,6 @@ void
ephoto_flow_browser_image_set(Evas_Object *obj, const char *current_image)
{
Ephoto_Flow_Browser *ef;
const char *file_type;
Elm_Toolbar_Item *o;
int i;
@ -265,10 +264,6 @@ _ephoto_flow_browser_show_cb(void *data, Evas *e, Evas_Object *obj, void *event_
static void
_ephoto_flow_browser_del_cb(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
Ephoto_Flow_Browser *ef = data;
Eina_List *items;
}
@ -330,7 +325,6 @@ _ephoto_go_first(void *data, Evas_Object *obj, void *event_info)
static void
_ephoto_go_last(void *data, Evas_Object *obj, void *event_info)
{
const char *file_type;
Ephoto_Flow_Browser *ef = data;
ef->iter = eina_list_last(em->images);
@ -343,7 +337,6 @@ _ephoto_go_last(void *data, Evas_Object *obj, void *event_info)
static void
_ephoto_go_next(void *data, Evas_Object *obj, void *event_info)
{
const char *file_type;
Ephoto_Flow_Browser *ef = data;
ef->iter = eina_list_next(ef->iter);
@ -358,7 +351,6 @@ _ephoto_go_next(void *data, Evas_Object *obj, void *event_info)
static void
_ephoto_go_previous(void *data, Evas_Object *obj, void *event_info)
{
const char *file_type;
Ephoto_Flow_Browser *ef = data;
ef->iter = eina_list_prev(ef->iter);

View File

@ -5,8 +5,8 @@ typedef struct _Ephoto_Thumb_Browser Ephoto_Thumb_Browser;
struct _Ephoto_Thumb_Data
{
char *thumb_path;
char *file;
const char *thumb_path;
const char *file;
};
struct _Ephoto_Thumb_Browser
@ -391,7 +391,7 @@ _ephoto_thumb_clicked(void *data, Evas_Object *obj, void *event_info)
selected = elm_gengrid_selected_items_get(tb->thumb_browser);
o = eina_list_data_get(selected);
etd = (Ephoto_Thumb_Data *)elm_gengrid_item_data_get((Elm_Gengrid_Item *)o);
evas_object_smart_callback_call(tb->layout, "selected", etd->file);
evas_object_smart_callback_call(tb->layout, "selected", (char *)etd->file);
// ecore_job_add(_ephoto_thumb_clicked_job, etd->file);
}
@ -446,7 +446,7 @@ _ephoto_directory_chosen(void *data, Evas_Object *obj, void *event_info)
}
}
evas_object_smart_callback_call(tb->layout, "directory,changed", tb->current_directory);
evas_object_smart_callback_call(tb->layout, "directory,changed", (char *)tb->current_directory);
evas_object_del(tb->fsel_win);
elm_toolbar_item_unselect_all(tb->toolbar);
@ -470,7 +470,7 @@ _ephoto_view_large(void *data, Evas_Object *obj, void *event_info)
o = eina_list_data_get(selected);
etd = (Ephoto_Thumb_Data *)elm_gengrid_item_data_get((Elm_Gengrid_Item *)o);
/* _ephoto_thumb_clicked_job(etd->file); */
evas_object_smart_callback_call(tb->layout, "selected", etd->file);
evas_object_smart_callback_call(tb->layout, "selected", (char *)etd->file);
}
else
@ -524,7 +524,7 @@ static void
_ephoto_del_cb(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
Ephoto_Thumb_Browser *tb = data;
const Eina_List *items, *l, *iter;
const Eina_List *l, *iter;
Elm_Gengrid_Item *item;
Ephoto_Thumb_Data *etd;