diff options
Diffstat (limited to 'adept/adept/acqprogress.h')
-rw-r--r-- | adept/adept/acqprogress.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/adept/adept/acqprogress.h b/adept/adept/acqprogress.h index e5fc535..3e67668 100644 --- a/adept/adept/acqprogress.h +++ b/adept/adept/acqprogress.h @@ -23,7 +23,7 @@ class TQGridLayout; namespace adept { -class AcqStatus : public KListView, public aptFront::ProgressCallback +class AcqStatus : public TDEListView, public aptFront::ProgressCallback { Q_OBJECT @@ -54,7 +54,7 @@ protected: std::string m_status; int m_spin; }; - class Item : public KListViewItem { + class Item : public TDEListViewItem { protected: ItemProgress *m_prog; int m_pbcol; @@ -62,7 +62,7 @@ protected: pkgAcquire::ItemDesc m_item; public: - Item (KListView *parent, pkgAcquire::ItemDesc &item, + Item (TDEListView *parent, pkgAcquire::ItemDesc &item, bool hit = false); virtual ~Item (); @@ -75,7 +75,7 @@ protected: void setStatus( const std::string &, int = 0 ); void setup() { - KListViewItem::setup(); + TDEListViewItem::setup(); setHeight( height() + 6 ); } }; |