summaryrefslogtreecommitdiffstats
path: root/kmplot/kmplot/kmplotio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmplot/kmplot/kmplotio.cpp')
-rw-r--r--kmplot/kmplot/kmplotio.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmplot/kmplot/kmplotio.cpp b/kmplot/kmplot/kmplotio.cpp
index 0beb551a..ad9142b2 100644
--- a/kmplot/kmplot/kmplotio.cpp
+++ b/kmplot/kmplot/kmplotio.cpp
@@ -189,7 +189,7 @@ bool KmPlotIO::save( const KURL &url )
doc.save( ts, 4 );
xmlfile.close();
- if ( !KIO::NetAccess::upload(tmpfile.name(), url,0))
+ if ( !TDEIO::NetAccess::upload(tmpfile.name(), url,0))
{
tmpfile.unlink();
return false;
@@ -224,13 +224,13 @@ bool KmPlotIO::load( const KURL &url )
TQFile f;
if ( !url.isLocalFile() )
{
- if( !KIO::NetAccess::exists( url, true, 0 ) )
+ if( !TDEIO::NetAccess::exists( url, true, 0 ) )
{
KMessageBox::error(0,i18n("The file does not exist."));
return false;
}
TQString tmpfile;
- if( !KIO::NetAccess::download( url, tmpfile, 0 ) )
+ if( !TDEIO::NetAccess::download( url, tmpfile, 0 ) )
{
KMessageBox::error(0,i18n("An error appeared when opening this file"));
return false;
@@ -289,7 +289,7 @@ bool KmPlotIO::load( const KURL &url )
KMessageBox::error(0,i18n("The file had an unknown version number"));
if ( !url.isLocalFile() )
- KIO::NetAccess::removeTempFile( f.name() );
+ TDEIO::NetAccess::removeTempFile( f.name() );
return true;
}