Add UNUSED where needed.

SVN revision: 51403
This commit is contained in:
Christopher Michael 2010-08-19 15:20:05 +00:00
parent 8f557cd30c
commit 5034dc5d5f
2 changed files with 5 additions and 5 deletions

View File

@ -79,7 +79,7 @@ _config_pager_module(Config_Item *ci)
/* local function prototypes */
static void *
_create_data(E_Config_Dialog *cfd)
_create_data(E_Config_Dialog *cfd __UNUSED__)
{
E_Config_Dialog_Data *cfdata;

View File

@ -831,7 +831,7 @@ _pager_inst_cb_menu_configure(void *data __UNUSED__, E_Menu *m __UNUSED__, E_Men
}
static E_Config_Dialog *
_pager_config_dialog(E_Container *con, const char *params)
_pager_config_dialog(E_Container *con __UNUSED__, const char *params __UNUSED__)
{
if (!pager_config) return NULL;
if (pager_config->config_dialog) return NULL;
@ -1571,7 +1571,7 @@ _pager_cb_event_border_property(void *data __UNUSED__, int type __UNUSED__, void
}
static Eina_Bool
_pager_cb_event_zone_desk_count_set(void *data __UNUSED__, int type __UNUSED__, void *event)
_pager_cb_event_zone_desk_count_set(void *data __UNUSED__, int type __UNUSED__, void *event __UNUSED__)
{
Eina_List *l;
Pager *p;
@ -2836,7 +2836,7 @@ e_modapi_init(E_Module *m)
}
EAPI int
e_modapi_shutdown(E_Module *m)
e_modapi_shutdown(E_Module *m __UNUSED__)
{
e_gadcon_provider_unregister(&_gadcon_class);
@ -2874,7 +2874,7 @@ e_modapi_shutdown(E_Module *m)
}
EAPI int
e_modapi_save(E_Module *m)
e_modapi_save(E_Module *m __UNUSED__)
{
e_config_domain_save("module.pager", conf_edd, pager_config);
return 1;