summaryrefslogtreecommitdiffstats
path: root/qtools
diff options
context:
space:
mode:
Diffstat (limited to 'qtools')
-rw-r--r--qtools/qvaluestack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtools/qvaluestack.h b/qtools/qvaluestack.h
index 3fb61fd..fe4462a 100644
--- a/qtools/qvaluestack.h
+++ b/qtools/qvaluestack.h
@@ -49,7 +49,7 @@ class Q_EXPORT QValueStack : public QValueList<T>
public:
QValueStack() {}
~QValueStack() {}
- void push( const T& d ) { append(d); }
+ void push( const T& d ) { QValueList<T>::append(d); }
T pop()
{
T elem( this->last() );