summaryrefslogtreecommitdiffstats
path: root/tderesources/lib/folderlistview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tderesources/lib/folderlistview.cpp')
-rw-r--r--tderesources/lib/folderlistview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tderesources/lib/folderlistview.cpp b/tderesources/lib/folderlistview.cpp
index b29e61c9..68995aef 100644
--- a/tderesources/lib/folderlistview.cpp
+++ b/tderesources/lib/folderlistview.cpp
@@ -39,7 +39,7 @@ static const int BoxSize = 16;
//BEGIN FolderListView
FolderListView::FolderListView( TQWidget *parent, const TQValueList<Property> &types )
- : KListView( parent )
+ : TDEListView( parent )
{
setEnabledTypes( types );
@@ -95,7 +95,7 @@ void FolderListView::showPopupMenu( FolderListItem *i, const TQPoint &globalPos
if ( !i ) return;
KPIM::FolderLister::Entry folder( i->folder() );
- KPopupMenu m( this );
+ TDEPopupMenu m( this );
int id;
m.insertTitle( folder.name, 9999 );
@@ -154,7 +154,7 @@ void FolderListView::slotMousePressed(int btn, TQListViewItem* i, const TQPoint&
// map pos to item/column and call FolderListItem::activate(col, pos)
((FolderListItem*)i)->activate( c, viewport()->mapFromGlobal( pos ) - TQPoint( 0, itemRect(i).top() ) );
// } else {
-// KListView::slotMousePressed( btn, i, pos, c );
+// TDEListView::slotMousePressed( btn, i, pos, c );
}
}
}