mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
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:
parent
31f26042f7
commit
5d1a5ac216
@ -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().
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user