summaryrefslogtreecommitdiffstats
path: root/korganizer
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:47 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:47 +0900
commitdfa201d00dc5ead8135aae9e42bdfb0a54c18cc1 (patch)
tree2721fcb2b633911b96ff4c7c3fdfc4ad87bac3d9 /korganizer
parent79f797c04276f2ff0992ed1a9f5882db9cf88cbe (diff)
downloadtdepim-dfa201d00dc5ead8135aae9e42bdfb0a54c18cc1.tar.gz
tdepim-dfa201d00dc5ead8135aae9e42bdfb0a54c18cc1.zip
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'korganizer')
-rw-r--r--korganizer/eventarchiver.cpp2
1 files changed, 1 insertions, 1 deletions
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!";