diff options
Diffstat (limited to 'kradio3/src/stationlist.cpp')
-rw-r--r-- | kradio3/src/stationlist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kradio3/src/stationlist.cpp b/kradio3/src/stationlist.cpp index 8c6bf80..6de71fb 100644 --- a/kradio3/src/stationlist.cpp +++ b/kradio3/src/stationlist.cpp @@ -337,7 +337,7 @@ bool StationList::readXML (const TQString &dat, const IErrorLogClient &logger, b bool StationList::readXML (const KURL &url, const IErrorLogClient &logger, bool enableMessageBox) { TQString tmpfile; - if (!KIO::NetAccess::download(url, tmpfile, NULL)) { + if (!TDEIO::NetAccess::download(url, tmpfile, NULL)) { if (enableMessageBox) { logger.logError("StationList::readXML: " + i18n("error downloading preset file %1").arg(url.url())); @@ -393,7 +393,7 @@ bool StationList::readXML (const KURL &url, const IErrorLogClient &logger, bool presetFile.close(); - KIO::NetAccess::removeTempFile(tmpfile); + TDEIO::NetAccess::removeTempFile(tmpfile); return readXML(xmlData, logger, enableMessageBox); } @@ -477,7 +477,7 @@ bool StationList::writeXML (const KURL &url, const IErrorLogClient &logger, bool i18n("something strange happend, station list has only %1 entries. Writing station preset file skipped").arg(count())); } else { - if (!KIO::NetAccess::upload(tmpFile.name(), url, NULL)) { + if (!TDEIO::NetAccess::upload(tmpFile.name(), url, NULL)) { logger.logError("StationList::writeXML: " + i18n("error uploading preset file %1").arg(url.url())); |