diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 14:59:16 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 14:59:16 -0600 |
commit | 08e6e3d01bc56d3b55c1512164f48d3db762bd53 (patch) | |
tree | 5280c4cb6c471a7f2d79e42246fdcda85cc4adfe /src/projects/k3bmovixlistview.cpp | |
parent | f3e58cb8bdc777ffad67ac52847bb63c27e7e436 (diff) | |
download | k3b-08e6e3d01bc56d3b55c1512164f48d3db762bd53.tar.gz k3b-08e6e3d01bc56d3b55c1512164f48d3db762bd53.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/projects/k3bmovixlistview.cpp')
-rw-r--r-- | src/projects/k3bmovixlistview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/projects/k3bmovixlistview.cpp b/src/projects/k3bmovixlistview.cpp index 2f3fc31..980c0f7 100644 --- a/src/projects/k3bmovixlistview.cpp +++ b/src/projects/k3bmovixlistview.cpp @@ -182,7 +182,7 @@ K3bMovixListView::K3bMovixListView( K3bMovixDoc* doc, TQWidget* parent, const ch setAllColumnsShowFocus( true ); setDragEnabled( true ); setItemsMovable( false ); - setSelectionModeExt( KListView::Extended ); + setSelectionModeExt( TDEListView::Extended ); setSorting(0); setNoItemText( i18n("Use drag'n'drop to add files to the project.") +"\n" @@ -193,8 +193,8 @@ K3bMovixListView::K3bMovixListView( K3bMovixDoc* doc, TQWidget* parent, const ch connect( m_doc, TQT_SIGNAL(newMovixFileItems()), this, TQT_SLOT(slotNewFileItems()) ); connect( m_doc, TQT_SIGNAL(movixItemRemoved(K3bMovixFileItem*)), this, TQT_SLOT(slotFileItemRemoved(K3bMovixFileItem*)) ); connect( m_doc, TQT_SIGNAL(subTitleItemRemoved(K3bMovixFileItem*)), this, TQT_SLOT(slotSubTitleItemRemoved(K3bMovixFileItem*)) ); - connect( this, TQT_SIGNAL(dropped(KListView*, TQDropEvent*, TQListViewItem*)), - this, TQT_SLOT(slotDropped(KListView*, TQDropEvent*, TQListViewItem*)) ); + connect( this, TQT_SIGNAL(dropped(TDEListView*, TQDropEvent*, TQListViewItem*)), + this, TQT_SLOT(slotDropped(TDEListView*, TQDropEvent*, TQListViewItem*)) ); // let's see what the doc already has slotNewFileItems(); @@ -258,7 +258,7 @@ void K3bMovixListView::slotSubTitleItemRemoved( K3bMovixFileItem* item ) } -void K3bMovixListView::slotDropped( KListView*, TQDropEvent* e, TQListViewItem* after ) +void K3bMovixListView::slotDropped( TDEListView*, TQDropEvent* e, TQListViewItem* after ) { if( !e->isAccepted() ) return; |