From dacae0242e905268e9df9aed83f84e91b13a1749 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 24 Jul 2013 11:53:10 -0500 Subject: Convert to TDE R14 API --- src/kbitem.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/kbitem.h') 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 +#include 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; }; -- cgit v1.2.1