summaryrefslogtreecommitdiffstats
path: root/knode/kncollectionview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knode/kncollectionview.cpp')
-rw-r--r--knode/kncollectionview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/knode/kncollectionview.cpp b/knode/kncollectionview.cpp
index 56fe429f..2f45a30a 100644
--- a/knode/kncollectionview.cpp
+++ b/knode/kncollectionview.cpp
@@ -46,7 +46,7 @@ KNCollectionView::KNCollectionView(TQWidget *parent, const char* name) :
// popup menu to enable/disable unread and total columns
header()->setClickEnabled( true );
header()->installEventFilter( this );
- mPopup = new KPopupMenu( this );
+ mPopup = new TDEPopupMenu( this );
mPopup->insertTitle( i18n("View Columns") );
mPopup->setCheckable( true );
mUnreadPop = mPopup->insertItem( i18n("Unread Column"), this, TQT_SLOT(toggleUnreadColumn()) );
@@ -377,7 +377,7 @@ TQDragObject* KNCollectionView::dragObject()
void KNCollectionView::contentsDropEvent( TQDropEvent *e )
{
- cleanItemHighlighter(); // necessary since we overwrite KListView::contentsDropEvent()
+ cleanItemHighlighter(); // necessary since we overwrite TDEListView::contentsDropEvent()
TQListViewItem *item = itemAt( contentsToViewport(e->pos()) );
KNCollectionViewItem *fti = static_cast<KNCollectionViewItem*>(item);
if (fti && (fti->coll) && acceptDrag(e)) {