View | Details | Raw Unified | Return to bug 171298
Collapse All | Expand All

(-)tinyq/files/patch-include-qvaluestack.h (-3 / +9 lines)
Lines 1-6 Link Here
1
--- include/qvaluestack.h.orig	Thu Dec 21 20:51:31 2006
1
--- include/qvaluestack.h.orig	2002-10-17 15:08:58.000000000 +0000
2
+++ include/qvaluestack.h	Thu Dec 21 20:52:42 2006
2
+++ include/qvaluestack.h	2012-09-03 22:17:15.000000000 +0000
3
@@ -55,7 +55,7 @@
3
@@ -50,12 +50,12 @@
4
 public:
5
     QValueStack() {}
6
    ~QValueStack() {}
7
-    void  push( const T& d ) { append(d); }
8
+    void  push( const T& d ) { this->append(d); }
9
     T pop()
4
     {
10
     {
5
 	T elem( this->last() );
11
 	T elem( this->last() );
6
 	if ( !this->isEmpty() )
12
 	if ( !this->isEmpty() )

Return to bug 171298