updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / qt2 / qt-2.3.2_gcc43fix.patch
bloba60c949c9e7de04902c860025932bb61a12bfdfa
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
4 @@ -54,7 +54,7 @@
6 T elem( this->last() );
7 if ( !this->isEmpty() )
8 - remove( this->fromLast() );
9 + this->remove( this->fromLast() );
10 return elem;
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
16 @@ -54,7 +54,7 @@
18 T elem( this->last() );
19 if ( !this->isEmpty() )
20 - remove( this->fromLast() );
21 + this->remove( this->fromLast() );
22 return elem;
24 T& top() { return this->last(); }