parent
215eb3829e
commit
6efa790b09
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=303743
1 changed files with 9 additions and 3 deletions
|
@ -1,6 +1,12 @@
|
|||
--- include/qvaluestack.h.orig Thu Dec 21 20:51:31 2006
|
||||
+++ include/qvaluestack.h Thu Dec 21 20:52:42 2006
|
||||
@@ -55,7 +55,7 @@
|
||||
--- include/qvaluestack.h.orig 2002-10-17 15:08:58.000000000 +0000
|
||||
+++ include/qvaluestack.h 2012-09-03 22:17:15.000000000 +0000
|
||||
@@ -50,12 +50,12 @@
|
||||
public:
|
||||
QValueStack() {}
|
||||
~QValueStack() {}
|
||||
- void push( const T& d ) { append(d); }
|
||||
+ void push( const T& d ) { this->append(d); }
|
||||
T pop()
|
||||
{
|
||||
T elem( this->last() );
|
||||
if ( !this->isEmpty() )
|
||||
|
|
Loading…
Reference in a new issue