diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:13:55 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:13:55 -0600 |
commit | 5e6e2fd8352a86fb70f804472a6346868483623a (patch) | |
tree | dfc010a4f5fb5624b094cdb01295591c8879debf /src/sound | |
parent | 59ff04ffaf48f18383b39ea6da17b8e18b6b50c3 (diff) | |
download | rosegarden-5e6e2fd8352a86fb70f804472a6346868483623a.tar.gz rosegarden-5e6e2fd8352a86fb70f804472a6346868483623a.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/sound')
-rw-r--r-- | src/sound/AudioFileManager.cpp | 6 |
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; } |