2008-03-14 Carlos Garcia Campos <carlosgc@gnome.org>
* backend/pdf/ev-poppler.cc: (pdf_selection_render_selection):
Fix build with poppler <= 0.7.2
svn path=/trunk/; revision=2967
+2008-03-14 Carlos Garcia Campos <carlosgc@gnome.org>
+
+ * backend/pdf/ev-poppler.cc: (pdf_selection_render_selection):
+
+ Fix build with poppler <= 0.7.2
+
2008-03-14 Carlos Garcia Campos <carlosgc@gnome.org>
* libdocument/ev-document-misc.c:
cairo_t *cr;
#if POPPLER_MAJOR_VERSION <= 6 || (POPPLER_MAJOR_VERSION == 7 && POPPLER_MINOR_VERSION < 2)
- GdkColor **text_color, **base_color;
+ GdkColor text_color, base_color;
- *text_color = text;
- *base_color = base;
+ text_color = *text;
+ base_color = *base;
#else
PopplerColor text_color, base_color;