compile against latest ecore

This commit is contained in:
Andreas Volz 2010-07-13 23:12:50 +02:00
parent d083d07167
commit 9ac4f0252f
2 changed files with 6 additions and 6 deletions

View file

@ -47,7 +47,7 @@ private:
void toggle();
static int timeout_handler( void* );
static Eina_Bool timeout_handler( void* );
void _enable();
@ -69,9 +69,9 @@ private:
void toggle();
static int watch_handler_read ( void*, Ecore_Fd_Handler *fdh);
static Eina_Bool watch_handler_read ( void*, Ecore_Fd_Handler *fdh);
static int watch_handler_error ( void*, Ecore_Fd_Handler *fdh);
static Eina_Bool watch_handler_error ( void*, Ecore_Fd_Handler *fdh);
void _enable();

View file

@ -50,7 +50,7 @@ void Ecore::BusTimeout::toggle()
else _disable();
}
int Ecore::BusTimeout::timeout_handler( void *data )
Eina_Bool Ecore::BusTimeout::timeout_handler( void *data )
{
Ecore::BusTimeout* t = reinterpret_cast<Ecore::BusTimeout*>(data);
@ -118,7 +118,7 @@ void Ecore::BusWatch::toggle()
else _disable();
}
int Ecore::BusWatch::watch_handler_read( void *data, Ecore_Fd_Handler *fdh )
Eina_Bool Ecore::BusWatch::watch_handler_read( void *data, Ecore_Fd_Handler *fdh )
{
Ecore::BusWatch* w = reinterpret_cast<Ecore::BusWatch*>(data);
@ -133,7 +133,7 @@ int Ecore::BusWatch::watch_handler_read( void *data, Ecore_Fd_Handler *fdh )
return 1;
}
int Ecore::BusWatch::watch_handler_error( void *data, Ecore_Fd_Handler *fdh )
Eina_Bool Ecore::BusWatch::watch_handler_error( void *data, Ecore_Fd_Handler *fdh )
{
//Ecore::BusWatch* w = reinterpret_cast<Ecore::BusWatch*>(data);