diff -Naur pdfedit-0.4.5.orig/src/gui/rect2Darray.h pdfedit-0.4.5/src/gui/rect2Darray.h --- pdfedit-0.4.5.orig/src/gui/rect2Darray.h 2009-04-06 17:24:50.000000000 +0200 +++ pdfedit-0.4.5/src/gui/rect2Darray.h 2012-09-13 12:41:34.111014172 +0200 @@ -305,7 +305,7 @@ minY = std::min( minY, item->top() ); maxY = std::max( maxY, item->bottom() ); } - append( item ); + this->append( item ); } template @@ -461,7 +461,7 @@ if (toAppend) { current = new RectArray(); current->myAppend( bbox ); - append( current ); + this->append( current ); } }