diff options
Diffstat (limited to 'qtools')
-rw-r--r-- | qtools/qvaluestack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtools/qvaluestack.h b/qtools/qvaluestack.h index 9728d6c..3fb61fd 100644 --- a/qtools/qvaluestack.h +++ b/qtools/qvaluestack.h @@ -54,7 +54,7 @@ public: { T elem( this->last() ); if ( !this->isEmpty() ) - remove( this->fromLast() ); + this->remove( this->fromLast() ); return elem; } T& top() { return this->last(); } |