diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:33:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:33:36 -0600 |
commit | 3c5631f74d1c75204f950140331e10f739082ee9 (patch) | |
tree | a2811ff6c81d3c771745cde47734e65b1da3d806 /kfax/kfax.cpp | |
parent | 6adb71382c3d5277c3dcbc4ec24c5ff36b4c07ef (diff) | |
download | tdegraphics-3c5631f74d1c75204f950140331e10f739082ee9.tar.gz tdegraphics-3c5631f74d1c75204f950140331e10f739082ee9.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kfax/kfax.cpp')
-rw-r--r-- | kfax/kfax.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kfax/kfax.cpp b/kfax/kfax.cpp index 7e420a11..f77c281f 100644 --- a/kfax/kfax.cpp +++ b/kfax/kfax.cpp @@ -828,7 +828,7 @@ void TopLevel::saveNetFile( const KURL& dest) statusbar->message( i18n( "Saving..." ) ); KURL source = KURL::fromPathOrURL(thispage->pathname); - bool ok = KIO::NetAccess::file_copy( source, dest, -1, true, false, this); + bool ok = TDEIO::NetAccess::file_copy( source, dest, -1, true, false, this); statusbar->clear(); @@ -856,13 +856,13 @@ void TopLevel::openNetFile( const KURL &u) { statusbar->message(i18n("Downloading...")); TQString tmpFile = TQString(); - if ( KIO::NetAccess::download( u, tmpFile, this ) ) + if ( TDEIO::NetAccess::download( u, tmpFile, this ) ) { openadd( tmpFile ); setCaption( u.prettyURL() ); } statusbar->clear(); - KIO::NetAccess::removeTempFile( tmpFile ); + TDEIO::NetAccess::removeTempFile( tmpFile ); } } |