diff options
Diffstat (limited to 'kpackage/kplview.cpp')
-rw-r--r-- | kpackage/kplview.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kpackage/kplview.cpp b/kpackage/kplview.cpp index b5ca8f1..afd03f0 100644 --- a/kpackage/kplview.cpp +++ b/kpackage/kplview.cpp @@ -44,7 +44,7 @@ #define MPOS 1 KpTreeList::KpTreeList( TQWidget *parent ) : -KListView (parent) +TDEListView (parent) { markPkg = 0; setShowSortIndicator(true); @@ -80,17 +80,17 @@ void KpTreeList::clear() { markPkg = 0; emit cleared(); - KListView::clear(); + TDEListView::clear(); } KpTreeListItem *KpTreeList::firstChild() { - return (KpTreeListItem *)KListView::firstChild(); + return (KpTreeListItem *)TDEListView::firstChild(); } KpTreeListItem *KpTreeList::currentItem() { - return (KpTreeListItem *)KListView::currentItem(); + return (KpTreeListItem *)TDEListView::currentItem(); } void KpTreeList::contentsMousePressEvent ( TQMouseEvent * e ) @@ -136,9 +136,9 @@ void KpTreeList::contentsMousePressEvent ( TQMouseEvent * e ) } setCurrentItem(i); } else - KListView::contentsMousePressEvent (e); + TDEListView::contentsMousePressEvent (e); } else - KListView::contentsMousePressEvent (e); + TDEListView::contentsMousePressEvent (e); } if (markUpdate) @@ -588,7 +588,7 @@ KpTreeListItem::KpTreeListItem( TQListViewItem *parent, packageInfo* pinfo, setPixmap(1,info->interface->markUnInst); } -KpTreeListItem::KpTreeListItem( KListView *parent, packageInfo* pinfo, +KpTreeListItem::KpTreeListItem( TDEListView *parent, packageInfo* pinfo, const TQPixmap& thePixmap, TQString label1, TQString label2 , TQString label3 , TQString label4 , |