diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 23:25:57 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 23:25:57 +0900 |
commit | fe3271f292b21619d91177f41f58f35c96e48166 (patch) | |
tree | d68f86c2f9f6422e5aaf938445e25387883b6c24 | |
parent | fc9e774ff9ea7f5c12d93556de61ad7dd53c9a69 (diff) | |
download | krusader-fe3271f292b21619d91177f41f58f35c96e48166.tar.gz krusader-fe3271f292b21619d91177f41f58f35c96e48166.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-- | krusader/Dialogs/krspecialwidgets.h | 2 | ||||
-rw-r--r-- | krusader/VFS/arc_vfs.h | 2 | ||||
-rw-r--r-- | krusader/VFS/krdirwatch.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/krusader/Dialogs/krspecialwidgets.h b/krusader/Dialogs/krspecialwidgets.h index 58f1423..46354a9 100644 --- a/krusader/Dialogs/krspecialwidgets.h +++ b/krusader/Dialogs/krspecialwidgets.h @@ -53,7 +53,7 @@ class KRPie : public TQWidget { void paintEvent( TQPaintEvent * ); private: - TQList<KRPieSlice> slices; + TQPtrList<KRPieSlice> slices; TDEIO::filesize_t totalSize, sizeLeft; static TQColor colors[ 12 ]; }; diff --git a/krusader/VFS/arc_vfs.h b/krusader/VFS/arc_vfs.h index ed7c0dc..ed5e2e4 100644 --- a/krusader/VFS/arc_vfs.h +++ b/krusader/VFS/arc_vfs.h @@ -72,7 +72,7 @@ protected: TQString tmpDir; // the temp directory tha archive is using TQString arcFile; // the archive file URL bool changed; // true if repack changed the archive - TQList<arc_dir> dirList; + TQPtrList<arc_dir> dirList; TQValueList<extFile> extFiles; // the name, time & size of files unpacked from this archive void processName(const TQString& name,TQStringList *urls,TDEIO::filesize_t *totalSize,unsigned long *totalFiles ); diff --git a/krusader/VFS/krdirwatch.h b/krusader/VFS/krdirwatch.h index 4c598a0..8a566c4 100644 --- a/krusader/VFS/krdirwatch.h +++ b/krusader/VFS/krdirwatch.h @@ -68,7 +68,7 @@ signals: protected: int delay; // time in msec between updates - TQList<krDirEntry> watched; + TQPtrList<krDirEntry> watched; TQTimer t; TQDir dir; TQFileInfo qfi; |