summaryrefslogtreecommitdiff
path: root/qmake/include/qvaluestack.h
Side-by-side diff
Diffstat (limited to 'qmake/include/qvaluestack.h') (more/less context) (ignore whitespace changes)
-rw-r--r--qmake/include/qvaluestack.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qmake/include/qvaluestack.h b/qmake/include/qvaluestack.h
index 7e9bc48..c3f966e 100644
--- a/qmake/include/qvaluestack.h
+++ b/qmake/include/qvaluestack.h
@@ -5,7 +5,7 @@
**
** Created : 990925
**
-** Copyright (C) 1992-2000 Trolltech AS. All rights reserved.
+** Copyright (C) 1992-2003 Trolltech AS. All rights reserved.
**
** This file is part of the tools module of the Qt GUI Toolkit.
**
@@ -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(); }