mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
Correctly register the done signal - it sends an enum, not an int.
2006-06-20 Murray Cumming <murrayc@murrayc.com> * gtk/gtkprintoperation.c: (gtk_print_operation_class_init): Correctly register the done signal - it sends an enum, not an int.
This commit is contained in:
parent
d14e9a14ad
commit
41b067c43a
@ -1,3 +1,8 @@
|
||||
2006-06-20 Murray Cumming <murrayc@murrayc.com>
|
||||
|
||||
* gtk/gtkprintoperation.c: (gtk_print_operation_class_init):
|
||||
Correctly register the done signal - it sends an enum, not an int.
|
||||
|
||||
2006-06-20 Christian Persch <chpe@cvs.gnome.org>
|
||||
|
||||
* configure.in
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-06-20 Murray Cumming <murrayc@murrayc.com>
|
||||
|
||||
* gtk/gtkprintoperation.c: (gtk_print_operation_class_init):
|
||||
Correctly register the done signal - it sends an enum, not an int.
|
||||
|
||||
2006-06-20 Christian Persch <chpe@cvs.gnome.org>
|
||||
|
||||
* configure.in
|
||||
|
@ -556,8 +556,8 @@ gtk_print_operation_class_init (GtkPrintOperationClass *class)
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET (GtkPrintOperationClass, done),
|
||||
NULL, NULL,
|
||||
g_cclosure_marshal_VOID__INT,
|
||||
G_TYPE_NONE, 1, G_TYPE_INT);
|
||||
g_cclosure_marshal_VOID__ENUM,
|
||||
G_TYPE_NONE, 1, GTK_TYPE_PRINT_OPERATION_RESULT);
|
||||
|
||||
/**
|
||||
* GtkPrintOperation::begin-print:
|
||||
|
Loading…
Reference in New Issue
Block a user