diff options
Diffstat (limited to 'kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.cpp')
-rw-r--r-- | kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.cpp b/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.cpp index 0c186b57..0f849e9c 100644 --- a/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.cpp +++ b/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.cpp @@ -83,7 +83,7 @@ bool TmxCompendiumData::load(const KURL& url, const TQString& language) TQString target; - if( KIO::NetAccess::download( url, target ) ) + if( TDEIO::NetAccess::download( url, target ) ) { TQFile f( target ); if ( !f.open( IO_ReadOnly ) ) @@ -96,7 +96,7 @@ bool TmxCompendiumData::load(const KURL& url, const TQString& language) _errorMsg = i18n( "Cannot parse XML data." ); } f.close(); - KIO::NetAccess::removeTempFile(target); + TDEIO::NetAccess::removeTempFile(target); } else { _error = true; _errorMsg = i18n( "Cannot open the file." ); |