Fixes for Ecore Api changes

Patch automatically generated by Coccinelle to fix the
callbacks used by the following functions:

 * ecore_event_handler_add()
 * ecore_event_filter_add()
 * ecore_idler_add()
 * ecore_idle_enterer_add()
 * ecore_idle_enterer_before_add()
 * ecore_idle_exiter_add()
 * ecore_main_fd_handler_add()
 * ecore_main_win32_handler_add()
 * ecore_timer_add()
 * ecore_timer_loop_add()
 * ecore_animator_add()
 * ecore_poller_add()


SVN revision: 50113
This commit is contained in:
Lucas De Marchi 2010-07-08 01:00:48 +00:00
parent 4686d20b47
commit 7c12cc36aa
2 changed files with 4 additions and 4 deletions

View File

@ -1234,7 +1234,7 @@ _ethumb_image_load(Ethumb *e)
return 1;
}
static int
static Eina_Bool
_ethumb_finished_idler_cb(void *data)
{
Ethumb *e = data;
@ -1247,7 +1247,7 @@ _ethumb_finished_idler_cb(void *data)
e->cb_data = NULL;
e->cb_data_free = NULL;
return 0;
return EINA_FALSE;
}
void

View File

@ -177,7 +177,7 @@ _finish_thumb_generation(struct _emotion_plugin *_plugin, int success)
ethumb_finished_callback_call(_plugin->e, r);
}
static int
static Eina_Bool
_frame_grab_single(void *data)
{
struct _emotion_plugin *_plugin = data;
@ -210,7 +210,7 @@ _frame_grab_single(void *data)
return EINA_FALSE;
}
static int
static Eina_Bool
_frame_grab(void *data)
{
struct _emotion_plugin *_plugin = data;