summaryrefslogtreecommitdiffstats
path: root/ktron/tron.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ktron/tron.cpp')
-rw-r--r--ktron/tron.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ktron/tron.cpp b/ktron/tron.cpp
index 40a384e4..c17af2ee 100644
--- a/ktron/tron.cpp
+++ b/ktron/tron.cpp
@@ -90,7 +90,7 @@ void Tron::loadSettings(){
KURL url ( Settings::backgroundImage() );
if(!url.isEmpty()){
TQString tmpFile;
- KIO::NetAccess::download(url, tmpFile, this);
+ TDEIO::NetAccess::download(url, tmpFile, this);
TQPixmap pix(tmpFile);
if(!pix.isNull()){
setBackgroundPix(pix);
@@ -99,7 +99,7 @@ void Tron::loadSettings(){
msg=msg.arg(tmpFile);
KMessageBox::sorry(this, msg);
}
- KIO::NetAccess::removeTempFile(tmpFile);
+ TDEIO::NetAccess::removeTempFile(tmpFile);
}
else setBackgroundPix(NULL);
}