summaryrefslogtreecommitdiffstats
path: root/src/kbitem.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 11:53:10 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 11:53:10 -0500
commitdacae0242e905268e9df9aed83f84e91b13a1749 (patch)
tree26c8dc7f37d040f54265a3471834309a1e248538 /src/kbitem.h
parent0d218fd2db1810aafd86f7fc8761c75128f3fcb8 (diff)
downloadkasablanca-dacae0242e905268e9df9aed83f84e91b13a1749.tar.gz
kasablanca-dacae0242e905268e9df9aed83f84e91b13a1749.zip
Convert to TDE R14 API
Diffstat (limited to 'src/kbitem.h')
-rw-r--r--src/kbitem.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/kbitem.h b/src/kbitem.h
index ee390be..f4ff79f 100644
--- a/src/kbitem.h
+++ b/src/kbitem.h
@@ -12,14 +12,14 @@
#ifndef KBITEM_H
#define KBITEM_H
-#include <qlistview.h>
+#include <ntqlistview.h>
class KbFileInfo;
/**
@author mkulke
*/
-class KbItem : public QListViewItem
+class KbItem : public TQListViewItem
{
public:
enum entrytype
@@ -27,23 +27,23 @@ public:
dir = 1001,
file
};
- KbItem(KbFileInfo kfi, QListView* parent, QListViewItem* after);
- KbItem(QListView* parent, QListViewItem* after);
- int compare (QListViewItem * i, int col, bool ascending) const;
+ KbItem(KbFileInfo kfi, TQListView* parent, TQListViewItem* after);
+ KbItem(TQListView* parent, TQListViewItem* after);
+ int compare (TQListViewItem * i, int col, bool ascending) const;
~KbItem();
- QString File() { return m_file; };
- QString Path() { return m_path; };
- QString Date() { return m_date; };
+ TQString File() { return m_file; };
+ TQString Path() { return m_path; };
+ TQString Date() { return m_date; };
unsigned int DateInt() { return m_date_int; };
off64_t Size() { return m_size; };
protected:
- QString m_path;
- QString m_date;
+ TQString m_path;
+ TQString m_date;
off64_t m_size;
unsigned int m_date_int;
- QString m_file;
+ TQString m_file;
};