evince r2967 - in trunk: . backend/pdf
- From: carlosgc svn gnome org
- To: svn-commits-list gnome org
- Subject: evince r2967 - in trunk: . backend/pdf
- Date: Fri, 14 Mar 2008 16:34:49 +0000 (GMT)
Author: carlosgc
Date: Fri Mar 14 16:34:49 2008
New Revision: 2967
URL: http://svn.gnome.org/viewvc/evince?rev=2967&view=rev
Log:
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
Modified:
   trunk/ChangeLog
   trunk/backend/pdf/ev-poppler.cc
Modified: trunk/backend/pdf/ev-poppler.cc
==============================================================================
--- trunk/backend/pdf/ev-poppler.cc	(original)
+++ trunk/backend/pdf/ev-poppler.cc	Fri Mar 14 16:34:49 2008
@@ -1902,10 +1902,10 @@
 	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;
 	
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]