explicitly specify void in prototype

-Yosh
This commit is contained in:
Manish Singh 1998-07-18 06:50:57 +00:00
parent 15201b48c9
commit c25b3aad1e
9 changed files with 37 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Fri Jul 17 23:49:28 PDT 1998 Manish Singh <yosh@gimp.org>
* gtk/gtktypeutils.h
* gtk/gtkitemfactory.h: explicitly specify void in prototype
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end

View File

@ -1,3 +1,8 @@
Fri Jul 17 23:49:28 PDT 1998 Manish Singh <yosh@gimp.org>
* gtk/gtktypeutils.h
* gtk/gtkitemfactory.h: explicitly specify void in prototype
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end

View File

@ -1,3 +1,8 @@
Fri Jul 17 23:49:28 PDT 1998 Manish Singh <yosh@gimp.org>
* gtk/gtktypeutils.h
* gtk/gtkitemfactory.h: explicitly specify void in prototype
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end

View File

@ -1,3 +1,8 @@
Fri Jul 17 23:49:28 PDT 1998 Manish Singh <yosh@gimp.org>
* gtk/gtktypeutils.h
* gtk/gtkitemfactory.h: explicitly specify void in prototype
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end

View File

@ -1,3 +1,8 @@
Fri Jul 17 23:49:28 PDT 1998 Manish Singh <yosh@gimp.org>
* gtk/gtktypeutils.h
* gtk/gtkitemfactory.h: explicitly specify void in prototype
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end

View File

@ -1,3 +1,8 @@
Fri Jul 17 23:49:28 PDT 1998 Manish Singh <yosh@gimp.org>
* gtk/gtktypeutils.h
* gtk/gtkitemfactory.h: explicitly specify void in prototype
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end

View File

@ -1,3 +1,8 @@
Fri Jul 17 23:49:28 PDT 1998 Manish Singh <yosh@gimp.org>
* gtk/gtktypeutils.h
* gtk/gtkitemfactory.h: explicitly specify void in prototype
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end

View File

@ -36,7 +36,7 @@ extern "C" {
typedef void (*GtkPrintFunc) (gpointer func_data,
gchar *str);
typedef void (*GtkItemFactoryCallback) ();
typedef void (*GtkItemFactoryCallback) (void);
typedef void (*GtkItemFactoryCallback1) (gpointer callback_data,
guint callback_action,
GtkWidget *widget);

View File

@ -100,7 +100,7 @@ typedef struct _GtkEnumValue GtkFlagValue;
typedef void (*GtkClassInitFunc) (gpointer klass);
typedef void (*GtkObjectInitFunc) (gpointer object);
typedef void (*GtkSignalFunc) ();
typedef void (*GtkSignalFunc) (void);
typedef gint (*GtkFunction) (gpointer data);
typedef void (*GtkDestroyNotify) (gpointer data);
typedef void (*GtkCallbackMarshal) (GtkObject *object,