diff options
Diffstat (limited to 'src/kbitem.h')
-rw-r--r-- | src/kbitem.h | 22 |
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; }; |