diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:10:12 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:10:12 -0600 |
commit | 189e536f1a74ecc2d9dcf35b9f5b3d54a2d1901e (patch) | |
tree | 52d62ad83db1551dd15dc147b4af4cacaae6e850 /kpackage/kplview.cpp | |
parent | 58cb2c2c17b1e6dd48cbfbcb69ec2f50f1ced9ee (diff) | |
download | tdeadmin-189e536f1a74ecc2d9dcf35b9f5b3d54a2d1901e.tar.gz tdeadmin-189e536f1a74ecc2d9dcf35b9f5b3d54a2d1901e.zip |
Rename a number of classes to enhance compatibility with KDE4
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 , |