summaryrefslogtreecommitdiffstats
path: root/kdat/File.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/File.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/File.h')
-rw-r--r--kdat/File.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kdat/File.h b/kdat/File.h
index 0dda512..75b1d87 100644
--- a/kdat/File.h
+++ b/kdat/File.h
@@ -21,8 +21,8 @@
#include <stdio.h>
-#include <qptrlist.h>
-#include <qstring.h>
+#include <tqptrlist.h>
+#include <tqstring.h>
#include "Range.h"
#include "kdat.h"
@@ -44,9 +44,9 @@ class File {
int _offset;
} _stub;
} _union;
- QString _name;
+ TQString _name;
File* _parent;
- QPtrList<File> _children;
+ TQPtrList<File> _children;
RangeList _ranges;
public:
/**
@@ -63,7 +63,7 @@ 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* parent, int size, int mtime, int startRecord, int endRecord, const QString & 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
@@ -153,14 +153,14 @@ public:
*
* @return The file's name.
*/
- QString getName();
+ TQString getName();
/**
* Get the full path name of the file.
*
* @return The full path to the file.
*/
- QString getFullPathName();
+ TQString getFullPathName();
/**
* Get the file entry's parent. A NULL parent indicates that this is one
@@ -176,14 +176,14 @@ public:
*
* @return A list of the immediate children of this file entry.
*/
- const QPtrList<File>& getChildren();
+ const TQPtrList<File>& getChildren();
/**
* Get the list of ranges of this file and all of its children.
*
* @return A list of ranges.
*/
- const QPtrList<Range>& getRanges();
+ const TQPtrList<Range>& getRanges();
/**
* Add a new file entry as a child of this file entry.