summaryrefslogtreecommitdiffstats
path: root/amarok/src/playlistbrowser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/playlistbrowser.cpp')
-rw-r--r--amarok/src/playlistbrowser.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/amarok/src/playlistbrowser.cpp b/amarok/src/playlistbrowser.cpp
index 2010a57d..dbefffab 100644
--- a/amarok/src/playlistbrowser.cpp
+++ b/amarok/src/playlistbrowser.cpp
@@ -1139,7 +1139,7 @@ PlaylistCategory* PlaylistBrowser::loadPodcasts()
PlaylistCategory *p = new PlaylistCategory( m_listview, after, e );
p->setId( 0 );
//delete the file, it is deprecated
- KIO::del( KURL::fromPathOrURL( podcastBrowserCache() ) );
+ TDEIO::del( KURL::fromPathOrURL( podcastBrowserCache() ) );
if( !m_podcastItemsToScan.isEmpty() )
m_podcastTimer->start( m_podcastTimerInterval );
@@ -1507,7 +1507,7 @@ bool PlaylistBrowser::deleteSelectedPodcastItems( const bool removeItem, const b
if( silent || button != KMessageBox::Continue )
return false;
- KIO::Job *job = KIO::del( urls );
+ TDEIO::Job *job = TDEIO::del( urls );
PodcastEpisode *item;
for ( item = erasedItems.first(); item; item = erasedItems.next() )
@@ -1518,7 +1518,7 @@ bool PlaylistBrowser::deleteSelectedPodcastItems( const bool removeItem, const b
delete item;
}
else
- connect( job, TQT_SIGNAL( result( KIO::Job* ) ), item, TQT_SLOT( isOnDisk() ) );;
+ connect( job, TQT_SIGNAL( result( TDEIO::Job* ) ), item, TQT_SLOT( isOnDisk() ) );;
}
return true;
}
@@ -1548,7 +1548,7 @@ bool PlaylistBrowser::deletePodcasts( TQPtrList<PodcastChannel> items )
}
// TODO We need to check which files have been deleted successfully
if ( urls.count() )
- KIO::del( urls );
+ TDEIO::del( urls );
return true;
}
@@ -1897,7 +1897,7 @@ bool PlaylistBrowser::deletePlaylists( KURL::List items )
continue;
}
}
- KIO::del( items );
+ TDEIO::del( items );
return true;
}