diff options
Diffstat (limited to 'src/languages/language.cpp')
-rw-r--r-- | src/languages/language.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/languages/language.cpp b/src/languages/language.cpp index 71854a4..7b70135 100644 --- a/src/languages/language.cpp +++ b/src/languages/language.cpp @@ -178,11 +178,11 @@ ProcessOptions::ProcessOptions( OutputMethodInfo info ) b_targetFileSet = false; TQString target; - if ( !KIO::NetAccess::download( info.outputFile(), target, 0l ) ) + if ( !TDEIO::NetAccess::download( info.outputFile(), target, 0l ) ) { // If the file could not be downloaded, for example does not // exist on disk, NetAccess will tell us what error to use - KMessageBox::error( 0l, KIO::NetAccess::lastErrorString() ); + KMessageBox::error( 0l, TDEIO::NetAccess::lastErrorString() ); return; } |