Revert the change on 2007-04-29 (Also check the default handler when

2007-10-05  Murray Cumming  <murrayc@murrayc.com>

* gtk/gtkprintoperation.c: (print_pages_idle):
Revert the change on 2007-04-29 (Also check
the default handler when deciding whether to emit the
paginate signal.  (#345345, Yevgen Muntyan)).
This stopped printing from working in gtkmm, and is apparently 
not appropriate anyway. Bug #482089.

svn path=/trunk/; revision=18885
This commit is contained in:
Murray Cumming 2007-10-05 08:18:43 +00:00 committed by Murray Cumming
parent 31f26042f7
commit 5d1a5ac216
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,12 @@
2007-10-05 Murray Cumming <murrayc@murrayc.com>
* gtk/gtkprintoperation.c: (print_pages_idle):
Revert the change on 2007-04-29 ("Also check
the default handler when deciding whether to emit the
paginate signal. (#345345, Yevgen Muntyan)").
This stopped printing from working in gtkmm, and is apparently
not appropriate anyway. Bug #482089.
2007-10-05 Hiroyuki Ikezoe <poincare@ikezoe.net>
* gtk/gtkdnd.c: Use g_object_ref() instead of gtk_widget_ref().

View File

@ -2080,8 +2080,7 @@ print_pages_idle (gpointer user_data)
goto out;
}
if (GTK_PRINT_OPERATION_GET_CLASS (data->op)->paginate != NULL ||
g_signal_has_handler_pending (data->op, signals[PAGINATE], 0, FALSE))
if (g_signal_has_handler_pending (data->op, signals[PAGINATE], 0, FALSE))
{
gboolean paginated = FALSE;