diff options
Diffstat (limited to 'amarok/src/playlistbrowseritem.cpp')
-rw-r--r-- | amarok/src/playlistbrowseritem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/amarok/src/playlistbrowseritem.cpp b/amarok/src/playlistbrowseritem.cpp index ac8a5854..b66a89c5 100644 --- a/amarok/src/playlistbrowseritem.cpp +++ b/amarok/src/playlistbrowseritem.cpp @@ -1830,7 +1830,7 @@ PodcastChannel::fetchResult( TDEIO::Job* job ) //SLOT if ( job->error() != 0 ) { Amarok::StatusBar::instance()->shortMessage( i18n( "Unable to connect to Podcast server." ) ); - debug() << "Unable to retrieve podcast information. KIO Error: " << job->error() << endl; + debug() << "Unable to retrieve podcast information. TDEIO Error: " << job->error() << endl; title().isEmpty() ? setText( 0, m_url.prettyURL() ) : @@ -2622,7 +2622,7 @@ void PodcastEpisode::downloadResult( TDEIO::Job * transferJob ) if( transferJob->error() ) { Amarok::StatusBar::instance()->shortMessage( i18n( "Media download aborted, unable to connect to server." ) ); - debug() << "Unable to retrieve podcast media. KIO Error: " << transferJob->error() << endl; + debug() << "Unable to retrieve podcast media. TDEIO Error: " << transferJob->error() << endl; m_localUrl = KURL(); setPixmap( 0, SmallIcon("cancel") ); |