diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2006-03-27 18:37:02 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2006-03-27 18:37:02 (GMT) |
commit | 6f84cba4db755b69633ad66f6efbbaf94ca8df81 (patch) | |
tree | 70ca7fc96667c6c2dc67627660da9686dbb8d52f /qtools | |
parent | c8b3a0f8232656c1a11c185d595f19eb65c56c82 (diff) | |
download | Doxygen-6f84cba4db755b69633ad66f6efbbaf94ca8df81.zip Doxygen-6f84cba4db755b69633ad66f6efbbaf94ca8df81.tar.gz Doxygen-6f84cba4db755b69633ad66f6efbbaf94ca8df81.tar.bz2 |
Release-1.4.6-20060327
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(); } |