1 diff -Naur qt-2.3.2orig/include/qvaluestack.h qt-2.3.2/include/qvaluestack.h
2 --- qt-2.3.2orig/include/qvaluestack.h 2001-10-29 15:21:15.000000000 +0100
3 +++ qt-2.3.2/include/qvaluestack.h 2008-06-20 13:41:56.000000000 +0200
6 T elem( this->last() );
7 if ( !this->isEmpty() )
8 - remove( this->fromLast() );
9 + this->remove( this->fromLast() );
12 T& top() { return this->last(); }
13 diff -Naur qt-2.3.2orig/src/tools/qvaluestack.h qt-2.3.2/src/tools/qvaluestack.h
14 --- qt-2.3.2orig/src/tools/qvaluestack.h 2001-10-29 15:21:15.000000000 +0100
15 +++ qt-2.3.2/src/tools/qvaluestack.h 2008-06-20 13:41:56.000000000 +0200
18 T elem( this->last() );
19 if ( !this->isEmpty() )
20 - remove( this->fromLast() );
21 + this->remove( this->fromLast() );
24 T& top() { return this->last(); }