ecore: unused-params--

SVN revision: 72985
This commit is contained in:
Stefan Schmidt 2012-06-28 08:51:42 +00:00
parent 11dfca7e68
commit 43bf432157
4 changed files with 7 additions and 7 deletions

View File

@ -451,8 +451,8 @@ ecore_thread_main_loop_end(void)
} }
EAPI void EAPI void
ecore_print_warning(const char *function, ecore_print_warning(const char *function __UNUSED__,
const char *sparam) const char *sparam __UNUSED__)
{ {
WRN("***** Developer Warning ***** :\n" WRN("***** Developer Warning ***** :\n"
"\tThis program is calling:\n\n" "\tThis program is calling:\n\n"
@ -467,7 +467,7 @@ EAPI void
_ecore_magic_fail(const void *d, _ecore_magic_fail(const void *d,
Ecore_Magic m, Ecore_Magic m,
Ecore_Magic req_m, Ecore_Magic req_m,
const char *fname) const char *fname __UNUSED__)
{ {
ERR("\n" ERR("\n"
"*** ECORE ERROR: Ecore Magic Check Failed!!!\n" "*** ECORE ERROR: Ecore Magic Check Failed!!!\n"

View File

@ -187,8 +187,8 @@ static int _ecore_exe_check_errno(int result,
static int static int
_ecore_exe_check_errno(int result, _ecore_exe_check_errno(int result,
const char *file, const char *file __UNUSED__,
int line) int line __UNUSED__)
{ {
int saved_errno = errno; int saved_errno = errno;

View File

@ -269,7 +269,7 @@ _ecore_evas_ews_move_resize(Ecore_Evas *ee, int x, int y, int w, int h)
} }
static void static void
_ecore_evas_ews_rotation_set(Ecore_Evas *ee, int rot, int resize) _ecore_evas_ews_rotation_set(Ecore_Evas *ee, int rot, int resize __UNUSED__)
{ {
if (ee->rotation == rot) return; if (ee->rotation == rot) return;
ee->rotation = rot; ee->rotation = rot;

View File

@ -197,7 +197,7 @@ _ecore_evas_pre_free(Ecore_Evas *ee)
} }
static int static int
_ecore_evas_object_evas_check(const char *function, const Ecore_Evas *ee, const Evas_Object *obj) _ecore_evas_object_evas_check(const char *function __UNUSED__, const Ecore_Evas *ee, const Evas_Object *obj)
{ {
const char *name, *type; const char *name, *type;
Evas *e; Evas *e;