elm_widget: correct declaration of function with no parameters

We have to use void in a function declaration if we want no function
parameters. Using just empty parenthesis means the function takes an
unspecified number of parameters.

We had it correct for most declarations and this series fixes it for
the rest.

Thanks for the sparse semantic parser for pointing this out.
This commit is contained in:
Stefan Schmidt 2015-11-26 17:50:14 +01:00
parent b53aeeb3ee
commit bc05cd81bd
1 changed files with 1 additions and 1 deletions

View File

@ -518,7 +518,7 @@ struct _Elm_Action
Eina_Bool (*func)(Evas_Object *obj, const char *params);
};
void _elm_access_shutdown();
void _elm_access_shutdown(void);
void _elm_access_mouse_event_enabled_set(Eina_Bool enabled);
/* if auto_higlight is EINA_TRUE, it does not steal a focus, it just moves a highlight */