Blob Blame History Raw
diff -up ./src/gui/rect2Darray.h.045f17 ./src/gui/rect2Darray.h
--- ./src/gui/rect2Darray.h.045f17	2009-04-06 17:24:50.000000000 +0200
+++ ./src/gui/rect2Darray.h	2012-12-07 23:15:09.703862328 +0100
@@ -305,7 +305,7 @@ void RectArray<T>::myAppend ( const BBox
 		minY = std::min( minY, item->top() );
 		maxY = std::max( maxY, item->bottom() );
 	}
-	append( item );
+	this->append( item );
 }
 
 template <typename T>
@@ -461,7 +461,7 @@ void Rect2DArray<T>::myAppend( BBoxOfObj
 	if (toAppend) {
 		current = new RectArray<T>();
 		current->myAppend( bbox );
-		append( current );
+		this->append( current );
 	}
 }
 
diff -up ./src/kernel/cobject2xpdf.cc.045f17 ./src/kernel/cobject2xpdf.cc
--- ./src/kernel/cobject2xpdf.cc.045f17	2009-09-11 14:02:56.000000000 +0200
+++ ./src/kernel/cobject2xpdf.cc	2012-12-07 23:15:33.847932118 +0100
@@ -718,6 +718,10 @@ simpleValueFromXpdfObj (const Object& ob
 	rp (obj,val);
 }
 
+template
+void
+simpleValueFromXpdfObj<pReal, double&> (const Object&, double& val);
+
 //
 // Special case for pNull
 //