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:
@ -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,
|
||||
|
Reference in New Issue
Block a user