Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2007-05-22 10:04:21 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2007-05-22 10:04:21 (GMT)
commitdf3510ed9fdf66e192f89e222a1dfc867af2729d (patch)
tree77e6881b5d491adfbef4e229ceb1f2ee44a4d036 /backend
parent55df2834052430d7ff694216ed7749c506d8ecbb (diff)
Fix build with current poppler from cvs head.
2007-05-22 Carlos Garcia Campos <carlosgc@gnome.org> * configure.ac: * backend/pdf/ev-poppler.cc: (pdf_selection_render_selection): Fix build with current poppler from cvs head. svn path=/trunk/; revision=2473
Diffstat (limited to 'backend')
-rw-r--r--backend/pdf/ev-poppler.cc11
1 files changed, 10 insertions, 1 deletions
diff --git a/backend/pdf/ev-poppler.cc b/backend/pdf/ev-poppler.cc
index 1edbb48..6822464 100644
--- a/backend/pdf/ev-poppler.cc
+++ b/backend/pdf/ev-poppler.cc
@@ -1623,13 +1623,22 @@ pdf_selection_render_selection (EvSelection *selection,
TRUE, 8,
width, height);
}
-
+
+#ifdef HAVE_POPPLER_PAGE_RENDER_SELECTION_TO_PIXBUF
+ poppler_page_render_selection_to_pixbuf (POPPLER_PAGE (rc->data),
+ rc->scale, rc->rotation, *pixbuf,
+ (PopplerRectangle *)points,
+ (PopplerRectangle *)old_points,
+ text,
+ base);
+#else
poppler_page_render_selection (POPPLER_PAGE (rc->data),
rc->scale, rc->rotation, *pixbuf,
(PopplerRectangle *)points,
(PopplerRectangle *)old_points,
text,
base);
+#endif /* HAVE_POPPLER_PAGE_RENDER_SELECTION_TO_PIXBUF */
}