explicitly specify void in prototype
-Yosh
This commit is contained in:
@ -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>
|
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
|
||||||
|
|
||||||
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
||||||
|
@ -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>
|
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
|
||||||
|
|
||||||
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
||||||
|
@ -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>
|
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
|
||||||
|
|
||||||
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
||||||
|
@ -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>
|
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
|
||||||
|
|
||||||
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
||||||
|
@ -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>
|
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
|
||||||
|
|
||||||
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
||||||
|
@ -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>
|
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
|
||||||
|
|
||||||
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
||||||
|
@ -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>
|
Fri Jul 17 17:54:02 1998 Lars Hamann <lars@gtk.org>
|
||||||
|
|
||||||
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
* gtk/gtkclist.c (scroll_vertical): fix to avoid flicker at begin/end
|
||||||
|
@ -36,7 +36,7 @@ extern "C" {
|
|||||||
|
|
||||||
typedef void (*GtkPrintFunc) (gpointer func_data,
|
typedef void (*GtkPrintFunc) (gpointer func_data,
|
||||||
gchar *str);
|
gchar *str);
|
||||||
typedef void (*GtkItemFactoryCallback) ();
|
typedef void (*GtkItemFactoryCallback) (void);
|
||||||
typedef void (*GtkItemFactoryCallback1) (gpointer callback_data,
|
typedef void (*GtkItemFactoryCallback1) (gpointer callback_data,
|
||||||
guint callback_action,
|
guint callback_action,
|
||||||
GtkWidget *widget);
|
GtkWidget *widget);
|
||||||
|
@ -100,7 +100,7 @@ typedef struct _GtkEnumValue GtkFlagValue;
|
|||||||
|
|
||||||
typedef void (*GtkClassInitFunc) (gpointer klass);
|
typedef void (*GtkClassInitFunc) (gpointer klass);
|
||||||
typedef void (*GtkObjectInitFunc) (gpointer object);
|
typedef void (*GtkObjectInitFunc) (gpointer object);
|
||||||
typedef void (*GtkSignalFunc) ();
|
typedef void (*GtkSignalFunc) (void);
|
||||||
typedef gint (*GtkFunction) (gpointer data);
|
typedef gint (*GtkFunction) (gpointer data);
|
||||||
typedef void (*GtkDestroyNotify) (gpointer data);
|
typedef void (*GtkDestroyNotify) (gpointer data);
|
||||||
typedef void (*GtkCallbackMarshal) (GtkObject *object,
|
typedef void (*GtkCallbackMarshal) (GtkObject *object,
|
||||||
|
Reference in New Issue
Block a user