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 slices; + TQPtrList 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 dirList; + TQPtrList dirList; TQValueList 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 watched; + TQPtrList watched; TQTimer t; TQDir dir; TQFileInfo qfi;