summaryrefslogtreecommitdiff
path: root/devel/tinyq/files/patch-include-qvaluestack.h
diff options
context:
space:
mode:
Diffstat (limited to 'devel/tinyq/files/patch-include-qvaluestack.h')
-rw-r--r--devel/tinyq/files/patch-include-qvaluestack.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/devel/tinyq/files/patch-include-qvaluestack.h b/devel/tinyq/files/patch-include-qvaluestack.h
deleted file mode 100644
index 23a9b154256a..000000000000
--- a/devel/tinyq/files/patch-include-qvaluestack.h
+++ /dev/null
@@ -1,17 +0,0 @@
---- include/qvaluestack.h.orig 2002-10-17 15:08:58 UTC
-+++ include/qvaluestack.h
-@@ -50,12 +50,12 @@ class QValueStack
- 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() )
-- remove( this->fromLast() );
-+ this->remove( this->fromLast() );
- return elem;
- }
- T& top() { return this->last(); }