Add unused.

SVN revision: 51319
This commit is contained in:
Christopher Michael 2010-08-18 18:43:43 +00:00
parent c314974f42
commit 539a4df22e
1 changed files with 6 additions and 7 deletions

View File

@ -51,7 +51,7 @@ e_moveresize_shutdown(void)
} }
static void static void
_e_resize_begin(void *data, void *border) _e_resize_begin(void *data __UNUSED__, void *border)
{ {
E_Border *bd = border; E_Border *bd = border;
Evas_Coord ew, eh; Evas_Coord ew, eh;
@ -109,7 +109,7 @@ _e_resize_begin(void *data, void *border)
} }
static void static void
_e_resize_end(void *data, void *border) _e_resize_end(void *data __UNUSED__, void *border __UNUSED__)
{ {
if (e_config->resize_info_visible) if (e_config->resize_info_visible)
{ {
@ -129,7 +129,7 @@ _e_resize_end(void *data, void *border)
} }
static void static void
_e_resize_update(void *data, void *border) _e_resize_update(void *data __UNUSED__, void *border)
{ {
E_Border *bd = border; E_Border *bd = border;
char buf[40]; char buf[40];
@ -183,7 +183,7 @@ _e_resize_border_extents(E_Border *bd, int *w, int *h)
} }
static void static void
_e_move_begin(void *data, void *border) _e_move_begin(void *data __UNUSED__, void *border)
{ {
E_Border *bd = border; E_Border *bd = border;
Evas_Coord ew, eh; Evas_Coord ew, eh;
@ -223,7 +223,7 @@ _e_move_begin(void *data, void *border)
} }
static void static void
_e_move_end(void *data, void *border) _e_move_end(void *data __UNUSED__, void *border __UNUSED__)
{ {
if (e_config->move_info_visible) if (e_config->move_info_visible)
{ {
@ -243,10 +243,9 @@ _e_move_end(void *data, void *border)
} }
static void static void
_e_move_update(void *data, void *border) _e_move_update(void *data __UNUSED__, void *border)
{ {
E_Border *bd = border; E_Border *bd = border;
char buf[40]; char buf[40];
if (!_disp_pop) return; if (!_disp_pop) return;