diff options
Diffstat (limited to 'kdat/Tape.h')
-rw-r--r-- | kdat/Tape.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kdat/Tape.h b/kdat/Tape.h index eab7cb3..335619c 100644 --- a/kdat/Tape.h +++ b/kdat/Tape.h @@ -19,8 +19,8 @@ #ifndef _Tape_h_ #define _Tape_h_ -#include <qptrlist.h> -#include <qstring.h> +#include <tqptrlist.h> +#include <tqstring.h> #include "Archive.h" @@ -29,12 +29,12 @@ */ class Tape { bool _stubbed; - QCString _id; + TQCString _id; int _ctime; int _mtime; - QString _name; + TQString _name; int _size; - QPtrList<Archive> _children; + TQPtrList<Archive> _children; FILE* _fptr; @@ -77,14 +77,14 @@ public: * * @return The tape id. */ - QString getID(); + TQString getID(); /** * Get the user-specified name for the tape. * * @return The name of the tape. */ - QString getName(); + TQString getName(); /** * Get the date and time that the tape was formatted. @@ -112,14 +112,14 @@ public: * * @return The list of all archives on the tape. */ - const QPtrList<Archive>& getChildren(); + const TQPtrList<Archive>& getChildren(); /** * Set the name for the tape. * * @param name The new name for the tape. */ - void setName( const QString & name ); + void setName( const TQString & name ); /** * Set the modification time for the tape to be the current time.. |