Mercurial > mplayer.hg
changeset 19101:97fb8198c676
Change function declararation w/o parameters to the correct foo(void) syntax.
patch by Stefan Huehner, stefan at huehner org
author | diego |
---|---|
date | Sat, 15 Jul 2006 15:18:35 +0000 |
parents | 66350a3a7db8 |
children | 1455679f6bef |
files | Gui/wm/wsxdnd.c Gui/wm/wsxdnd.h |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Gui/wm/wsxdnd.c Sat Jul 15 11:42:29 2006 +0000 +++ b/Gui/wm/wsxdnd.c Sat Jul 15 15:18:35 2006 +0000 @@ -29,7 +29,7 @@ Atom atom_support; -void wsXDNDInitialize() +void wsXDNDInitialize(void) { _XA_XdndAware = XInternAtom(wsDisplay, "XdndAware", False);
--- a/Gui/wm/wsxdnd.h Sat Jul 15 11:42:29 2006 +0000 +++ b/Gui/wm/wsxdnd.h Sat Jul 15 15:18:35 2006 +0000 @@ -3,7 +3,7 @@ #define _XDND_H_ -void wsXDNDInitialize(); +void wsXDNDInitialize(void); Bool wsXDNDProcessSelection(wsTWindow* wnd,XEvent *event); Bool wsXDNDProcessClientMessage(wsTWindow* wnd, XClientMessageEvent *event); void wsXDNDMakeAwareness(wsTWindow* window);