diff options
Diffstat (limited to 'kdat/File.h')
-rw-r--r-- | kdat/File.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kdat/File.h b/kdat/File.h index 7bfcd3e..71167f2 100644 --- a/kdat/File.h +++ b/kdat/File.h @@ -52,7 +52,7 @@ public: /** * Create a new file entry. * - * @param tqparent The directory file entry that contains this file. + * @param parent The directory file entry that contains this file. * @param size The size of the file in bytes. * @param mtime The last modification time of the file in seconds since * the Epoch. @@ -63,21 +63,21 @@ 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* tqparent, int size, int mtime, int startRecord, int endRecord, const TQString & 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 * offset specify where the actual instance data can be found. The real * data is read on demand when one of the accessor functions is called. * - * @param tqparent The directory file entry that contains this file. + * @param parent The directory file entry that contains this file. * @param fptr The open index file containing this file entry. The file * must be left open so that the file entry information can * be read at a later time. * @param offset The offset that will be seeked to when reading the file * entry information. */ - File( File* tqparent, FILE* fptr, int offset ); + File( File* parent, FILE* fptr, int offset ); /** * Destroy the file entry and all of its tqchildren. @@ -163,7 +163,7 @@ public: TQString getFullPathName(); /** - * Get the file entry's tqparent. A NULL tqparent indicates that this is one + * Get the file entry's parent. A NULL parent indicates that this is one * of (possibly) many top level directories within the tar archive. * * @return A pointer to the file entry that contains this file entry. |