summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--krusader/Dialogs/krspecialwidgets.h2
-rw-r--r--krusader/VFS/arc_vfs.h2
-rw-r--r--krusader/VFS/krdirwatch.h2
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;