summaryrefslogtreecommitdiffstats
path: root/ktouch/src/ktouchcolorscheme.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ktouch/src/ktouchcolorscheme.cpp')
-rw-r--r--ktouch/src/ktouchcolorscheme.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ktouch/src/ktouchcolorscheme.cpp b/ktouch/src/ktouchcolorscheme.cpp
index 4104fe14..35def758 100644
--- a/ktouch/src/ktouchcolorscheme.cpp
+++ b/ktouch/src/ktouchcolorscheme.cpp
@@ -147,12 +147,12 @@ bool KTouchColorScheme::readList(TQWidget * window, const KURL& url) {
//kdDebug() << "[KTouchColorScheme::readList] " << endl;
//kdDebug() << " url = '" << url.url() << "'" << endl;
TQString tmp_file;
- bool result = KIO::NetAccess::download(url, tmp_file, window);
+ bool result = TDEIO::NetAccess::download(url, tmp_file, window);
if (result) {
// Ok, that was successful, try to parse the XML doc now
TQFile infile(tmp_file);
if ( !infile.open( IO_ReadOnly ) ) {
- KIO::NetAccess::removeTempFile(tmp_file);
+ TDEIO::NetAccess::removeTempFile(tmp_file);
return false; // Bugger it... couldn't open it...
}
TQDomDocument doc;
@@ -170,7 +170,7 @@ bool KTouchColorScheme::readList(TQWidget * window, const KURL& url) {
}
}
- KIO::NetAccess::removeTempFile(tmp_file);
+ TDEIO::NetAccess::removeTempFile(tmp_file);
return result;
}
@@ -211,7 +211,7 @@ bool KTouchColorScheme::writeList(TQWidget * window, const KURL& url) {
outfile.close();
// if we have a temporary file, we still need to upload it
if (temp) {
- KIO::NetAccess::upload(tmp_file, url, window);
+ TDEIO::NetAccess::upload(tmp_file, url, window);
delete temp;
}
return true;