diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 23:25:47 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 23:25:47 +0900 |
commit | dfa201d00dc5ead8135aae9e42bdfb0a54c18cc1 (patch) | |
tree | 2721fcb2b633911b96ff4c7c3fdfc4ad87bac3d9 | |
parent | 79f797c04276f2ff0992ed1a9f5882db9cf88cbe (diff) | |
download | tdepim-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>
-rw-r--r-- | korganizer/eventarchiver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korganizer/eventarchiver.cpp b/korganizer/eventarchiver.cpp index 345629212..5655debfd 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!"; |