Fixes for Ecore Api changes

Patch automatically 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: 50108
This commit is contained in:
Lucas De Marchi 2010-07-08 00:57:17 +00:00
parent c155a31ac0
commit e2a8990c1b
1 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ struct _Instance
static void _mpdule_connect (Instance * inst);
static void _mpdule_disconnect (Instance * inst);
static void _mpdule_update_song (Instance * inst);
static int _mpdule_update_song_cb (void *data);
static Eina_Bool _mpdule_update_song_cb (void *data);
static void _mpdule_popup_destroy (Instance * inst);
static void _mpdule_popup_create (Instance * inst, const char *dir);
@ -469,14 +469,14 @@ _mpdule_disconnect (Instance * inst)
}
}
static int
static Eina_Bool
_mpdule_update_song_cb (void *data)
{
Instance *inst;
inst = data;
_mpdule_update_song (inst);
return 1;
return EINA_TRUE;
}
static void