warnings--

SVN revision: 52459
This commit is contained in:
Carsten Haitzler 2010-09-19 03:51:56 +00:00
parent 9a977e2262
commit bcf7b03bae
2 changed files with 17 additions and 2 deletions

View File

@ -71,7 +71,6 @@ _ecore_evas_fb_match(void)
static void
_ecore_evas_fb_lose(void *data __UNUSED__)
{
Ecore_Evas *ee;
Eina_List *ll;
Ecore_Fb_Input_Device *dev;
@ -186,6 +185,7 @@ _ecore_evas_event_mouse_wheel(void *data __UNUSED__, int type __UNUSED__, void *
return EINA_FALSE; /* dont pass it on */
}
/* XXX: unused
static int
_ecore_evas_fb_render(Ecore_Evas *ee)
{
@ -221,6 +221,7 @@ _ecore_evas_fb_render(Ecore_Evas *ee)
evas_norender(ee->evas);
return rend;
}
*/
static int
_ecore_evas_fb_init(int w, int h)
@ -351,7 +352,7 @@ _ecore_evas_move_resize(Ecore_Evas *ee, int x __UNUSED__, int y __UNUSED__, int
}
static void
_ecore_evas_rotation_set(Ecore_Evas *ee, int rotation, int resize)
_ecore_evas_rotation_set(Ecore_Evas *ee, int rotation, int resize __UNUSED__)
{
Evas_Engine_Info_FB *einfo;
int rot_dif;

View File

@ -4244,6 +4244,12 @@ ecore_evas_software_x11_8_new(const char *disp_name, Ecore_X_Window parent,
return ee;
#else
return NULL;
disp_name = NULL;
parent = 0;
x = 0;
y = 0;
w = 0;
h = 0;
#endif /* ! BUILD_ECORE_EVAS_SOFTWARE_8_X11 */
}
@ -4259,6 +4265,7 @@ ecore_evas_software_x11_8_window_get(const Ecore_Evas *ee)
return (Ecore_X_Window) ecore_evas_window_get(ee);
#else
return 0;
ee = NULL;
#endif
}
@ -4274,6 +4281,7 @@ ecore_evas_software_x11_8_subwindow_get(const Ecore_Evas *ee)
return (Ecore_X_Window) ecore_evas_window_get(ee);
#else
return 0;
ee = NULL;
#endif
}
@ -4307,6 +4315,8 @@ ecore_evas_software_x11_8_direct_resize_set(Ecore_Evas *ee, int on)
}
#else
return;
ee = NULL;
on = 0;
#endif
}
@ -4322,6 +4332,7 @@ ecore_evas_software_x11_8_direct_resize_get(const Ecore_Evas *ee)
return ee->engine.x.direct_resize;
#else
return 0;
ee = NULL;
#endif
}
@ -4345,5 +4356,8 @@ ecore_evas_software_x11_8_extra_event_window_add(Ecore_Evas *ee, Ecore_X_Window
ecore_event_window_register(win, ee, ee->evas, (Ecore_Event_Mouse_Move_Cb) _ecore_evas_mouse_move_process);
}
#else
return;
ee = NULL;
win = 0;
#endif
}