summaryrefslogtreecommitdiffstats
path: root/kdat/Tape.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
commitaa3a1ca934bc541bddd3fa136a85f106f7da266e (patch)
tree9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /kdat/Tape.h
parentb10cf7066791a2f362495890cd50c984e8025412 (diff)
downloadtdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz
tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdat/Tape.h')
-rw-r--r--kdat/Tape.h18
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..