tag 667320 + patch thanks Hi!
Attached fixes the FTBFS bug on pdfedit. Please let me know whether you would appreciate an NMU. WM
diff --git a/src/gui/rect2Darray.h b/src/gui/rect2Darray.h index 953865f..d9d53bb 100644 --- a/src/gui/rect2Darray.h +++ b/src/gui/rect2Darray.h @@ -305,7 +305,7 @@ void RectArray<T>::myAppend ( const BBoxOfObjectOnPage<T> * item ) { 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( BBoxOfObjectOnPage<T> * bbox ) { if (toAppend) { current = new RectArray<T>(); current->myAppend( bbox ); - append( current ); + this->append( current ); } }