Fixed the GtkSignalFunc typedef to read "(void)" instead of "()", which

Fixed the GtkSignalFunc typedef to read "(void)" instead of "()", which was
causing it to not build on my irix machine.
This commit is contained in:
Nat Friedman 1998-08-13 19:03:48 +00:00
parent 87f9cc2162
commit eff77f116b

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,