From dfa201d00dc5ead8135aae9e42bdfb0a54c18cc1 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 17 Oct 2018 23:25:47 +0900 Subject: [PATCH] Removed obsolete Qt2's TQList/TQListIterator classes and replaced with TQt3's TQPtrList/TQPtrListIterator ones. Signed-off-by: Michele Calgaro --- korganizer/eventarchiver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korganizer/eventarchiver.cpp b/korganizer/eventarchiver.cpp index 34562921..5655debf 100644 --- a/korganizer/eventarchiver.cpp +++ b/korganizer/eventarchiver.cpp @@ -246,7 +246,7 @@ bool EventArchiver::isSubTreeComplete( const Todo *todo, const TQDate &limitDate return false; } - // This TQList is only to prevent infinit recursion + // This TQPtrList is only to prevent infinit recursion if ( checkedUids.contains( todo->uid() ) ) { // Probably will never happen, calendar.cpp checks for this kdWarning() << "To-do hierarchy loop detected!";