summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:55 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:55 +0900
commit8df1e285ac63de5d6f1a1ec7b6bd125a2de2bbe9 (patch)
treef2636c4f45d559c71b27f152fa0cf5a8c0baae7d
parent98a6d095f1ad99be084cfeca167d3ae2af2c50ed (diff)
downloadkdirstat-8df1e285ac63de5d6f1a1ec7b6bd125a2de2bbe9.tar.gz
kdirstat-8df1e285ac63de5d6f1a1ec7b6bd125a2de2bbe9.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--kdirstat/kcleanupcollection.cpp4
1 files 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 );