diff options
Diffstat (limited to 'juk/nowplaying.cpp')
-rw-r--r-- | juk/nowplaying.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juk/nowplaying.cpp b/juk/nowplaying.cpp index 78b09d42..1125cdd6 100644 --- a/juk/nowplaying.cpp +++ b/juk/nowplaying.cpp @@ -195,7 +195,7 @@ void CoverItem::dropEvent(TQDropEvent *e) else if(KURLDrag::decode(e, urls)) { TQString fileName; - if(KIO::NetAccess::download(urls.front(), fileName, this)) { + if(TDEIO::NetAccess::download(urls.front(), fileName, this)) { if(image.load(fileName)) { m_file.coverInfo()->setCover(image); update(m_file); @@ -203,7 +203,7 @@ void CoverItem::dropEvent(TQDropEvent *e) else kdError(65432) << "Unable to load image from " << urls.front() << endl; - KIO::NetAccess::removeTempFile(fileName); + TDEIO::NetAccess::removeTempFile(fileName); } else kdError(65432) << "Unable to download " << urls.front() << endl; |