diff options
Diffstat (limited to 'kdat/File.h')
-rw-r--r-- | kdat/File.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kdat/File.h b/kdat/File.h index 0dda512..75b1d87 100644 --- a/kdat/File.h +++ b/kdat/File.h @@ -21,8 +21,8 @@ #include <stdio.h> -#include <qptrlist.h> -#include <qstring.h> +#include <tqptrlist.h> +#include <tqstring.h> #include "Range.h" #include "kdat.h" @@ -44,9 +44,9 @@ class File { int _offset; } _stub; } _union; - QString _name; + TQString _name; File* _parent; - QPtrList<File> _children; + TQPtrList<File> _children; RangeList _ranges; public: /** @@ -63,7 +63,7 @@ public: * the file's path name should be passed in. The rest of the * path is determined by this file entry's ancestors. */ - File( File* parent, int size, int mtime, int startRecord, int endRecord, const QString & name ); + File( File* parent, int size, int mtime, int startRecord, int endRecord, const TQString & name ); /** * Create a new stubbed instance of a file entry. The file pointer and @@ -153,14 +153,14 @@ public: * * @return The file's name. */ - QString getName(); + TQString getName(); /** * Get the full path name of the file. * * @return The full path to the file. */ - QString getFullPathName(); + TQString getFullPathName(); /** * Get the file entry's parent. A NULL parent indicates that this is one @@ -176,14 +176,14 @@ public: * * @return A list of the immediate children of this file entry. */ - const QPtrList<File>& getChildren(); + const TQPtrList<File>& getChildren(); /** * Get the list of ranges of this file and all of its children. * * @return A list of ranges. */ - const QPtrList<Range>& getRanges(); + const TQPtrList<Range>& getRanges(); /** * Add a new file entry as a child of this file entry. |