summaryrefslogtreecommitdiffstats
path: root/src/sound/AudioFileManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/AudioFileManager.cpp')
-rw-r--r--src/sound/AudioFileManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sound/AudioFileManager.cpp b/src/sound/AudioFileManager.cpp
index a1e51dc..49c6fd3 100644
--- a/src/sound/AudioFileManager.cpp
+++ b/src/sound/AudioFileManager.cpp
@@ -660,7 +660,7 @@ AudioFileManager::importURL(const KURL &url, int sampleRate)
emit setOperationName(i18n("Downloading file %1").arg(url.prettyURL()));
TQString localPath = "";
- if (!KIO::NetAccess::download(url, localPath)) {
+ if (!TDEIO::NetAccess::download(url, localPath)) {
KMessageBox::error(0, i18n("Cannot download file %1").arg(url.prettyURL()));
throw SoundFile::BadSoundFileException(url.prettyURL().ascii());
}
@@ -670,10 +670,10 @@ AudioFileManager::importURL(const KURL &url, int sampleRate)
try {
id = importFile(localPath.ascii(), sampleRate);
} catch (BadAudioPathException ape) {
- KIO::NetAccess::removeTempFile(localPath);
+ TDEIO::NetAccess::removeTempFile(localPath);
throw ape;
} catch (SoundFile::BadSoundFileException bse) {
- KIO::NetAccess::removeTempFile(localPath);
+ TDEIO::NetAccess::removeTempFile(localPath);
throw bse;
}