Fix a few more Ecore_List2 to Eina_Inlist conversion typos.

ecore_evas_x.c is just changed for consistency.



SVN revision: 41085
This commit is contained in:
Lars Munch 2009-06-17 16:08:26 +00:00
parent 54b27e4edc
commit 9b521201d0
4 changed files with 9 additions and 9 deletions

View File

@ -54,7 +54,7 @@ _ecore_evas_directfb_render(Ecore_Evas *ee)
static int
_ecore_evas_directfb_idle_enter(void *data __UNUSED__)
{
Ecore_Evas *l;
Ecore_Evas *ee;
double t1 = 0.0;
double t2 = 0.0;
@ -63,7 +63,7 @@ _ecore_evas_directfb_idle_enter(void *data __UNUSED__)
{
t1 = ecore_time_get();
}
EINA_INLIST_FOREACH(ecore_evases, l)
EINA_INLIST_FOREACH(ecore_evases, ee)
_ecore_evas_directfb_render(ee);
if (_ecore_evas_fps_debug)
{

View File

@ -58,7 +58,7 @@ static NSWindow * main_window;
{
Ecore_evas *ee;
EINA_INLIST_FOREACH(ecore_evases, l)
EINA_INLIST_FOREACH(ecore_evases, ee)
{
if (ee->visible)
evas_damage_rectangle_add(ee->evas, 0, 0, 400, 400);
@ -143,11 +143,11 @@ _ecore_evas_quartz_event_video_expose(void *data __UNUSED__, int type __UNUSED__
static int
_ecore_evas_idle_enter(void *data __UNUSED__)
{
Ecore_Evas *l;
Ecore_Evas *ee;
double t1 = 0.;
double t2 = 0.;
EINA_INLIST_FOREACH(ecore_evases, l)
EINA_INLIST_FOREACH(ecore_evases, ee)
{
if (ee->visible)
evas_render(ee->evas);

View File

@ -102,7 +102,7 @@ _ecore_evas_wince_idle_enter(void *data __UNUSED__)
{
t1 = ecore_time_get();
}
EINA_INLIST_FOREACH(ecore_evases, l)
EINA_INLIST_FOREACH(ecore_evases, ee)
_ecore_evas_wince_render(ee);
if (_ecore_evas_fps_debug)

View File

@ -995,7 +995,7 @@ _ecore_evas_x_layer_update(Ecore_Evas *ee)
static int
_ecore_evas_x_idle_enter(void *data __UNUSED__)
{
Ecore_Evas *l;
Ecore_Evas *ee;
double t1 = 0.0;
double t2 = 0.0;
int rend = 0;
@ -1005,8 +1005,8 @@ _ecore_evas_x_idle_enter(void *data __UNUSED__)
{
t1 = ecore_time_get();
}
EINA_INLIST_FOREACH(ecore_evases, l)
rend |= _ecore_evas_x_render(l);
EINA_INLIST_FOREACH(ecore_evases, ee)
rend |= _ecore_evas_x_render(ee);
ecore_x_flush();
if (_ecore_evas_fps_debug)
{