diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index 5a65e9de4..b0593fb84 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -2480,7 +2480,7 @@ e_action_predef_name_del(const char *act_grp, const char *act_name) } EAPI void -e_action_predef_name_all_del() +e_action_predef_name_all_del(void) { E_Action_Group *actg = NULL; E_Action_Description *actd = NULL; @@ -2511,7 +2511,7 @@ e_action_predef_name_all_del() } EAPI Evas_List * -e_action_groups_get() +e_action_groups_get(void) { return action_groups; } diff --git a/src/bin/e_actions.h b/src/bin/e_actions.h index 0c2994703..581f4d763 100644 --- a/src/bin/e_actions.h +++ b/src/bin/e_actions.h @@ -56,8 +56,8 @@ EAPI E_Action *e_action_find(const char *name); EAPI void e_action_predef_name_set(const char *act_grp, const char *act_name, const char *act_cmd, const char *act_params, const char *param_example, int editable); EAPI void e_action_predef_name_del(const char *act_grp, const char *act_name); -EAPI void e_action_predef_name_all_del(); -EAPI Evas_List *e_action_groups_get(); +EAPI void e_action_predef_name_all_del(void); +EAPI Evas_List *e_action_groups_get(void); #endif #endif