diff options
Diffstat (limited to 'kode/kwsdl/kung/binaryinputfield.cpp')
-rw-r--r-- | kode/kwsdl/kung/binaryinputfield.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kode/kwsdl/kung/binaryinputfield.cpp b/kode/kwsdl/kung/binaryinputfield.cpp index ea7c17394..b053f5d1e 100644 --- a/kode/kwsdl/kung/binaryinputfield.cpp +++ b/kode/kwsdl/kung/binaryinputfield.cpp @@ -151,7 +151,7 @@ void BinaryWidget::load() return; TQString tempFile; - if ( KIO::NetAccess::download( url, tempFile, this ) ) { + if ( TDEIO::NetAccess::download( url, tempFile, this ) ) { TQFile file( tempFile ); if ( !file.open( IO_ReadOnly ) ) { KMessageBox::error( this, i18n( "Unable to open file %1" ).arg( url.url() ) ); @@ -162,11 +162,11 @@ void BinaryWidget::load() setData( data ); file.close(); - KIO::NetAccess::removeTempFile( tempFile ); + TDEIO::NetAccess::removeTempFile( tempFile ); emit valueChanged( data ); } else - KMessageBox::error( this, KIO::NetAccess::lastErrorString() ); + KMessageBox::error( this, TDEIO::NetAccess::lastErrorString() ); } void BinaryWidget::save() @@ -179,8 +179,8 @@ void BinaryWidget::save() tempFile.file()->writeBlock( mData ); tempFile.close(); - if ( !KIO::NetAccess::upload( tempFile.name(), url, this ) ) - KMessageBox::error( this, KIO::NetAccess::lastErrorString() ); + if ( !TDEIO::NetAccess::upload( tempFile.name(), url, this ) ) + KMessageBox::error( this, TDEIO::NetAccess::lastErrorString() ); } #include "binaryinputfield.moc" |