diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2007-04-30 06:04:48 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-04-30 06:04:48 +0000 |
commit | 10862a344aa8fb44e6045343ddf65eb0d14cc1b2 (patch) | |
tree | 102ae44073b1ed2009598390a651dc3db0893a0b | |
parent | 7253a5a2928f8dd555b43fcc92b01593ce1a22ec (diff) | |
download | gtk+-10862a344aa8fb44e6045343ddf65eb0d14cc1b2.tar.gz |
Fix a compiler warning.
svn path=/trunk/; revision=17729
-rw-r--r-- | gtk/gtkprintoperation.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkprintoperation.c b/gtk/gtkprintoperation.c index 1b35e9d5b4..cc8e077d71 100644 --- a/gtk/gtkprintoperation.c +++ b/gtk/gtkprintoperation.c @@ -507,7 +507,8 @@ gtk_print_operation_create_custom_widget (GtkPrintOperation *operation) } static void -gtk_print_operation_done (GtkPrintOperation *operation) +gtk_print_operation_done (GtkPrintOperation *operation, + GtkPrintOperationResult result) { GtkPrintOperationPrivate *priv = operation->priv; |