Update of /cvsroot/gaim/gaim/src/win32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12032/src/win32
Modified Files:
wspell.h
Log Message:
Function prototypes need to be of the form foo(void); instead of foo(); for function that don't take any arguments. This allows the compiler to detect mistakes were someone passes arguments to such a function.
Index: wspell.h
===================================================================
RCS file: /cvsroot/gaim/gaim/src/win32/wspell.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -p -r1.4 -r1.5
--- wspell.h 12 Oct 2003 21:00:25 -0000 1.4
+++ wspell.h 4 Dec 2005 18:19:56 -0000 1.5
@@ -24,7 +24,7 @@
#define _WSPELL_H_
#include <gtkspell/gtkspell.h>
-extern void wgaim_gtkspell_init();
+extern void wgaim_gtkspell_init(void);
extern GtkSpell* (*wgaim_gtkspell_new_attach)(GtkTextView*, const gchar*, GError**);
#define gtkspell_new_attach( view, lang, error ) \
|