diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 23:25:55 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 23:25:55 +0900 |
commit | 8df1e285ac63de5d6f1a1ec7b6bd125a2de2bbe9 (patch) | |
tree | f2636c4f45d559c71b27f152fa0cf5a8c0baae7d | |
parent | 98a6d095f1ad99be084cfeca167d3ae2af2c50ed (diff) | |
download | kdirstat-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 <[email protected]>
-rw-r--r-- | kdirstat/kcleanupcollection.cpp | 4 |
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 ); |