From a6b313955b54d73e608799e22fb5e70a73ef7ffd Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Fri, 14 Mar 2008 16:34:49 +0000 Subject: Fix build with poppler <= 0.7.2 2008-03-14 Carlos Garcia Campos * backend/pdf/ev-poppler.cc: (pdf_selection_render_selection): Fix build with poppler <= 0.7.2 svn path=/trunk/; revision=2967 --- (limited to 'backend/pdf/ev-poppler.cc') diff --git a/backend/pdf/ev-poppler.cc b/backend/pdf/ev-poppler.cc index f50407f..e44a769 100644 --- a/backend/pdf/ev-poppler.cc +++ b/backend/pdf/ev-poppler.cc @@ -1902,10 +1902,10 @@ pdf_selection_render_selection (EvSelection *selection, 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; -- cgit v0.9.1