diff options
Diffstat (limited to 'devel/tinyq')
-rw-r--r-- | devel/tinyq/files/patch-include-qvaluestack.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/tinyq/files/patch-include-qvaluestack.h b/devel/tinyq/files/patch-include-qvaluestack.h new file mode 100644 index 000000000000..67714e8e05e1 --- /dev/null +++ b/devel/tinyq/files/patch-include-qvaluestack.h @@ -0,0 +1,11 @@ +--- 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 @@ + { + T elem( this->last() ); + if ( !this->isEmpty() ) +- remove( this->fromLast() ); ++ this->remove( this->fromLast() ); + return elem; + } + T& top() { return this->last(); } |