]> www.fi.muni.cz Git - evince.git/commitdiff
Temporarily disable double and triple selections since it depends on
authorCarlos Garcia Campos <carlosgc@gnome.org>
Sun, 2 Sep 2007 15:55:44 +0000 (15:55 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Sun, 2 Sep 2007 15:55:44 +0000 (15:55 +0000)
2007-09-02  Carlos Garcia Campos  <carlosgc@gnome.org>
* backend/pdf/ev-poppler.cc: (pdf_selection_get_selected_text),
(pdf_selection_get_selection_region),
(pdf_selection_get_selection_map):
Temporarily disable double and triple selections since it depends on
poppler cvs head. It'll be enabled again as soon as poppler 0.6 is
released and the update of the external dependency minimal version
approved.

svn path=/trunk/; revision=2652

ChangeLog
backend/pdf/ev-poppler.cc

index 8f0dad0e4f2602d1e2baa963a7e1aa243b284ef0..09aa23a3ab8a98bf112fb9edb394c48ee7e8924c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2007-09-02  Carlos Garcia Campos  <carlosgc@gnome.org>
+
+       * backend/pdf/ev-poppler.cc: (pdf_selection_get_selected_text),
+       (pdf_selection_get_selection_region),
+       (pdf_selection_get_selection_map):
+
+       Temporarily disable double and triple selections since it depends on
+       poppler cvs head. It'll be enabled again as soon as poppler 0.6 is
+       released and the update of the external dependency minimal version
+       approved.
+       
 2007-09-01  Carlos Garcia Campos  <carlosgc@gnome.org>
 
        * backend/pdf/ev-poppler.cc: (pdf_document_file_exporter_begin),
index 65c2884fa5d0c2c85d0b5fa347a4d402b7bf6db6..bb4d5c4c1ca019d78225cc6c1d9b709ec2dead32 100644 (file)
@@ -1868,7 +1868,9 @@ pdf_selection_get_selected_text (EvSelection     *selection,
        r.y2 = height - points->y1;
 
        retval = poppler_page_get_text (poppler_page,
+#if 0
                                        (PopplerSelectionStyle)style,
+#endif
                                        &r);
 
        g_object_unref (poppler_page);
@@ -1891,7 +1893,9 @@ pdf_selection_get_selection_region (EvSelection     *selection,
 
        retval = poppler_page_get_selection_region ((PopplerPage *)rc->data,
                                                    rc->scale,
+#if 0
                                                    (PopplerSelectionStyle)style,
+#endif
                                                    (PopplerRectangle *) points);
        return retval;
 }
@@ -1913,7 +1917,9 @@ pdf_selection_get_selection_map (EvSelection     *selection,
        points.y1 = 0.0;
        poppler_page_get_size (poppler_page, &(points.x2), &(points.y2));
        retval = poppler_page_get_selection_region (poppler_page, 1.0,
+#if 0
                                                    POPPLER_SELECTION_GLYPH,
+#endif
                                                    &points);
        g_object_unref (poppler_page);