summarylogtreecommitdiffstats
path: root/0cc65e2f420af45f78d190ac2af64810a148bb31.patch
diff options
context:
space:
mode:
authorChristophe Noisel2022-10-13 20:22:27 +0200
committerChristophe Noisel2022-10-13 21:06:58 +0200
commit1b0652f1bc4968333d215dc01bbdf4db26054a99 (patch)
treebe7f360cbc219c057153248b26f7fb0ae1544731 /0cc65e2f420af45f78d190ac2af64810a148bb31.patch
parentf510ae4ba793eb9c338841f1123658cdd191da2b (diff)
downloadaur-1b0652f1bc4968333d215dc01bbdf4db26054a99.tar.gz
jumped to version 0.14.90 (master)
Diffstat (limited to '0cc65e2f420af45f78d190ac2af64810a148bb31.patch')
-rw-r--r--0cc65e2f420af45f78d190ac2af64810a148bb31.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/0cc65e2f420af45f78d190ac2af64810a148bb31.patch b/0cc65e2f420af45f78d190ac2af64810a148bb31.patch
deleted file mode 100644
index de5a64c37045..000000000000
--- a/0cc65e2f420af45f78d190ac2af64810a148bb31.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 0cc65e2f420af45f78d190ac2af64810a148bb31 Mon Sep 17 00:00:00 2001
-From: Luis Menina <liberforce@freeside.fr>
-Date: Mon, 11 Mar 2013 00:00:44 +0000
-Subject: Don't crash on an empty print preview, just provide an empty preview.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=581282
----
-diff --git a/src/planner-print-job.c b/src/planner-print-job.c
-index 6334037..96267a0 100644
---- a/src/planner-print-job.c
-+++ b/src/planner-print-job.c
-@@ -237,17 +237,7 @@ print_job_draw_page (GtkPrintOperation *operation,
-
- l = priv->views;
-
-- /* Abort if there is nothing to print.
-- *
-- * A better solution would be to set the number of pages to print to 0
-- * in print_job_begin_print, but 0 is not a valid value for
-- * gtk_print_operation_set_n_pages.
-- */
-- if(!l) {
-- return;
-- }
--
-- while (!page_found) {
-+ while (! page_found && l != NULL) {
- v = PLANNER_VIEW (l->data);
-
- pages_in_view = planner_view_print_get_n_pages (v);
-@@ -258,8 +248,6 @@ print_job_draw_page (GtkPrintOperation *operation,
- } else {
- page_nr -= pages_in_view;
- l = l->next;
--
-- g_assert (l != NULL);
- }
- }
- }
---
-cgit v0.9.2