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:
parent
87f9cc2162
commit
eff77f116b
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user