From 377fa3a2775cdb3194315bb83e21744dc7c97bbf Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 16 Dec 2011 09:58:15 -0600 Subject: Revert "Rename a number of old tq methods that are no longer tq specific" This reverts commit d1248617107f659af9d03cf1ef6d783571a0cba8. --- kdat/File.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'kdat/File.cpp') diff --git a/kdat/File.cpp b/kdat/File.cpp index fd766b3..ce05aeb 100644 --- a/kdat/File.cpp +++ b/kdat/File.cpp @@ -44,9 +44,9 @@ File::File( File* parent, FILE* fptr, int offset ) File::~File() { - while ( _children.first() ) { - delete _children.first(); - _children.removeFirst(); + while ( _tqchildren.first() ) { + delete _tqchildren.first(); + _tqchildren.removeFirst(); } } @@ -164,7 +164,7 @@ void File::write( FILE* fptr ) fwrite( &ival, sizeof( ival ), 1, fptr ); } - // Number of immediate children (4 bytes). + // Number of immediate tqchildren (4 bytes). ival = getChildren().count(); fwrite( &ival, sizeof( ival ), 1, fptr ); @@ -175,10 +175,10 @@ void File::write( FILE* fptr ) } //===== Write files ===== - ival = _children.count(); + ival = _tqchildren.count(); fwrite( &ival, sizeof( ival ), 1, fptr ); - TQPtrListIterator i( _children ); + TQPtrListIterator i( _tqchildren ); int count = 0; for ( ; i.current(); ++i, count++ ) { // Fill in the file offset. @@ -252,7 +252,7 @@ const TQPtrList& File::getChildren() { read(); - return _children; + return _tqchildren; } const TQPtrList& File::getRanges() @@ -266,7 +266,7 @@ void File::addChild( File* file ) { read(); - _children.append( file ); + _tqchildren.append( file ); } void File::calcRanges() -- cgit v1.2.3