diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-27 23:16:43 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-03 04:25:20 +0200 |
commit | a5965a5571267b0446495412d3406a70a8afe826 (patch) | |
tree | 236b43bb25138a23ff42b07b1e6e22f26557b687 | |
parent | 9c066e9107a8f9bf75064be1e9d25edbe218893f (diff) | |
download | tdepim-a5965a5571267b0446495412d3406a70a8afe826.tar.gz tdepim-a5965a5571267b0446495412d3406a70a8afe826.zip |
GCC 4.7 fix.
This partially resolves bug report 958.
(cherry picked from commit 6a168ff9d98a591fa48b21517b2063c0dd90b26c)
-rw-r--r-- | libkcal/listbase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libkcal/listbase.h b/libkcal/listbase.h index 2ce1dfa14..d6b8dbdfa 100644 --- a/libkcal/listbase.h +++ b/libkcal/listbase.h @@ -67,7 +67,7 @@ class ListBase : public TQValueList<T *> bool removeRef( T *t ) { - TQValueListIterator<T *> it = find( t ); + TQValueListIterator<T *> it = this->find( t ); if ( it == TQValueList<T*>::end() ) { return false; } else { |