From 8df1e285ac63de5d6f1a1ec7b6bd125a2de2bbe9 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 17 Oct 2018 23:25:55 +0900 Subject: [PATCH] Removed obsolete Qt2's TQList/TQListIterator classes and replaced with TQt3's TQPtrList/TQPtrListIterator ones. Signed-off-by: Michele Calgaro --- kdirstat/kcleanupcollection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kdirstat/kcleanupcollection.cpp b/kdirstat/kcleanupcollection.cpp index 3a58c79..8492f20 100644 --- a/kdirstat/kcleanupcollection.cpp +++ b/kdirstat/kcleanupcollection.cpp @@ -23,9 +23,9 @@ KCleanupCollection::KCleanupCollection( TDEActionCollection * actionCollection ) { /** * All cleanups beloningt to this collection are stored in two separate TQt - * collections, a TQList and a TQDict. Make _one_ of them manage the cleanup + * collections, a TQPtrList and a TQDict. Make _one_ of them manage the cleanup * objects, i.e. have them clear the KCleanup objects upon deleting. The - * TQList is the master collection, the TQDict the slave. + * TQPtrList is the master collection, the TQDict the slave. **/ _cleanupList.setAutoDelete( true );