diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:15 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:15 -0600 |
commit | 377fa3a2775cdb3194315bb83e21744dc7c97bbf (patch) | |
tree | b6f515484589d67271adb168a1ead39f1c98493d /kdat/File.h | |
parent | d1248617107f659af9d03cf1ef6d783571a0cba8 (diff) | |
download | tdeadmin-377fa3a2775cdb3194315bb83e21744dc7c97bbf.tar.gz tdeadmin-377fa3a2775cdb3194315bb83e21744dc7c97bbf.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit d1248617107f659af9d03cf1ef6d783571a0cba8.
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 75b1d87..71167f2 100644 --- a/kdat/File.h +++ b/kdat/File.h @@ -46,7 +46,7 @@ class File { } _union; TQString _name; File* _parent; - TQPtrList<File> _children; + TQPtrList<File> _tqchildren; RangeList _ranges; public: /** @@ -80,7 +80,7 @@ public: File( File* parent, FILE* fptr, int offset ); /** - * Destroy the file entry and all of its children. + * Destroy the file entry and all of its tqchildren. */ ~File(); @@ -95,7 +95,7 @@ public: /** * Recursively read the instance for this file entry and all of it's - * children. This method is used when converting from an older index format. + * tqchildren. This method is used when converting from an older index format. * * @param version The version of the old tape index. */ @@ -103,7 +103,7 @@ public: /** * Write out the file entry to the open file. Entries for each of its - * children will also be written. + * tqchildren will also be written. */ void write( FILE* fptr ); @@ -171,15 +171,15 @@ public: File* getParent(); /** - * Get the children of this file entry. A normal file will never have any - * children. A directory may or may not have children. + * Get the tqchildren of this file entry. A normal file will never have any + * tqchildren. A directory may or may not have tqchildren. * - * @return A list of the immediate children of this file entry. + * @return A list of the immediate tqchildren of this file entry. */ const TQPtrList<File>& getChildren(); /** - * Get the list of ranges of this file and all of its children. + * Get the list of ranges of this file and all of its tqchildren. * * @return A list of ranges. */ @@ -193,7 +193,7 @@ public: void addChild( File* file ); /** - * Recursively calculate the list of ranges for all of the file's children. + * Recursively calculate the list of ranges for all of the file's tqchildren. */ void calcRanges(); }; |