summaryrefslogtreecommitdiff
blob: ea81015cfe2d80eadc62fd3ca3809eb03c72e243 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- qtools/qvaluestack.h.orig
+++ qtools/qvaluestack.h
@@ -54,7 +54,7 @@
     {
 	T elem( this->last() );
 	if ( !this->isEmpty() )
-	    remove( this->fromLast() );
+	    this->remove( this->fromLast() );
 	return elem;
     }
     T& top() { return this->last(); }