summaryrefslogtreecommitdiff
path: root/print/evince/patches
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2005-10-16 12:24:38 +0000
committerjmmv <jmmv@pkgsrc.org>2005-10-16 12:24:38 +0000
commit7edf5b86f069e3caab9b2699909cdfe24ef43746 (patch)
tree44718b1e0ee62e4615c82a927ec1fe4361f71457 /print/evince/patches
parent0b39b61f5ba8e3c930038143fc2f7b4c36136d4c (diff)
downloadpkgsrc-7edf5b86f069e3caab9b2699909cdfe24ef43746.tar.gz
Update to 0.4.0:
* Depend on poppler 0.4.0 * Pass in timestamp to to handle opening multiple windows over dbus better (Ryan Lortie) * Really quit when rendering postscript files. * Set textdomain to libglade. * Fix rotation of thumbnails multiple times * Fix selection for non-continuous case * Disable selection for rotated case * findbar fixes
Diffstat (limited to 'print/evince/patches')
-rw-r--r--print/evince/patches/patch-aa21
1 files changed, 0 insertions, 21 deletions
diff --git a/print/evince/patches/patch-aa b/print/evince/patches/patch-aa
deleted file mode 100644
index bc8dd8bd82e..00000000000
--- a/print/evince/patches/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2005/09/22 13:01:15 rillig Exp $
-
-ISO C90 does not allow declarations after code.
-
---- shell/ev-page-action.c.orig Sun Jun 19 15:10:20 2005
-+++ shell/ev-page-action.c Thu Sep 22 14:28:27 2005
-@@ -181,12 +181,13 @@ page_changed_cb (EvPageCache *pag
- g_assert (proxy);
-
- if (page_cache != NULL && page >= 0) {
-+ gchar *page_label;
-
- gtk_entry_set_width_chars (GTK_ENTRY (proxy->entry),
- CLAMP (ev_page_cache_get_max_label_chars (page_cache),
- 4, 12));
-
-- gchar *page_label = ev_page_cache_get_page_label (page_cache, page);
-+ page_label = ev_page_cache_get_page_label (page_cache, page);
- gtk_entry_set_text (GTK_ENTRY (proxy->entry), page_label);
- gtk_editable_set_position (GTK_EDITABLE (proxy->entry), -1);
- g_free (page_label);