diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:32:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:32:59 -0600 |
commit | 2f84d0e2d3d4252e6aee24aceafa45dbdb7f4d1d (patch) | |
tree | ea24a96bad3bb7356ec1a2dca2a1338692d79745 /ktron/tron.cpp | |
parent | d6f3812c8d969a673b420beca2482804177704fb (diff) | |
download | tdegames-2f84d0e2d3d4252e6aee24aceafa45dbdb7f4d1d.tar.gz tdegames-2f84d0e2d3d4252e6aee24aceafa45dbdb7f4d1d.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'ktron/tron.cpp')
-rw-r--r-- | ktron/tron.cpp | 4 |
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); } |