summaryrefslogtreecommitdiffstats
path: root/libkcal
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-27 23:16:43 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-04-27 23:16:43 -0500
commit6a168ff9d98a591fa48b21517b2063c0dd90b26c (patch)
tree091b5817819ec9a1508e72f0e280fb3546206273 /libkcal
parentc94de3afa90f38fab67604732a4540b768a007b8 (diff)
downloadtdepim-6a168ff9d98a591fa48b21517b2063c0dd90b26c.tar.gz
tdepim-6a168ff9d98a591fa48b21517b2063c0dd90b26c.zip
GCC 4.7 fix.
This partially resolves bug report 958.
Diffstat (limited to 'libkcal')
-rw-r--r--libkcal/listbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libkcal/listbase.h b/libkcal/listbase.h
index 2ce1dfa1..d6b8dbdf 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 {