diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:35:36 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:35:36 -0600 |
commit | de9a6aa007626eba4e333ac4080cbdfcb9f98386 (patch) | |
tree | 79166818db79c0ac7acfbbb545a4929c0cd62b04 /juk/nowplaying.cpp | |
parent | 27430f06c6cc2187c639f59f342f07f1fde91a8b (diff) | |
download | tdemultimedia-de9a6aa007626eba4e333ac4080cbdfcb9f98386.tar.gz tdemultimedia-de9a6aa007626eba4e333ac4080cbdfcb9f98386.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
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; |