From 116b775c3062d5160e2219dc8facc064e1ae86c7 Mon Sep 17 00:00:00 2001 From: Daniel Willmann Date: Sat, 16 Mar 2013 12:33:36 +0000 Subject: [PATCH] ecore_evas: Mark unused variables as unused Get rid of warnings introduced by commit a4593c Signed-off-by: Daniel Willmann --- src/lib/ecore_evas/ecore_evas_deprecated.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/lib/ecore_evas/ecore_evas_deprecated.c b/src/lib/ecore_evas/ecore_evas_deprecated.c index d347e82726..1aa1b45c0f 100644 --- a/src/lib/ecore_evas/ecore_evas_deprecated.c +++ b/src/lib/ecore_evas/ecore_evas_deprecated.c @@ -66,21 +66,21 @@ ecore_evas_software_wince_gdi_new(Ecore_WinCE_Window *parent EINA_UNUSED, } EAPI Ecore_Evas * -ecore_evas_direct3d_new(Ecore_Win32_Window *parent, - int x, - int y, - int width, - int height) +ecore_evas_direct3d_new(Ecore_Win32_Window *parent EINA_UNUSED, + int x EINA_UNUSED, + int y EINA_UNUSED, + int width EINA_UNUSED, + int height EINA_UNUSED) { return NULL; } EAPI Ecore_Evas * -ecore_evas_gl_glew_new(Ecore_Win32_Window *parent, - int x, - int y, - int width, - int height) +ecore_evas_gl_glew_new(Ecore_Win32_Window *parent EINA_UNUSED, + int x EINA_UNUSED, + int y EINA_UNUSED, + int width EINA_UNUSED, + int height EINA_UNUSED) { return NULL; }