diff options
Diffstat (limited to 'kresources/remote/resourceremote.cpp')
-rw-r--r-- | kresources/remote/resourceremote.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kresources/remote/resourceremote.cpp b/kresources/remote/resourceremote.cpp index 229dd86bf..3803ecbef 100644 --- a/kresources/remote/resourceremote.cpp +++ b/kresources/remote/resourceremote.cpp @@ -51,7 +51,7 @@ using namespace KCal; -ResourceRemote::ResourceRemote( const KConfig *config ) +ResourceRemote::ResourceRemote( const TDEConfig *config ) : ResourceCached( config ), mUseProgressManager( true ), mUseCacheFile( true ) { if ( config ) { @@ -101,7 +101,7 @@ void ResourceRemote::init() enableChangeNotification(); } -void ResourceRemote::readConfig( const KConfig *config ) +void ResourceRemote::readConfig( const TDEConfig *config ) { TQString url = config->readEntry( "DownloadUrl" ); mDownloadUrl = KURL( url ); @@ -112,7 +112,7 @@ void ResourceRemote::readConfig( const KConfig *config ) ResourceCached::readConfig( config ); } -void ResourceRemote::writeConfig( KConfig *config ) +void ResourceRemote::writeConfig( TDEConfig *config ) { kdDebug(5800) << "ResourceRemote::writeConfig()" << endl; @@ -195,13 +195,13 @@ bool ResourceRemote::doLoad() { kdDebug() << "Download from: " << mDownloadUrl << endl; - mDownloadJob = KIO::file_copy( mDownloadUrl, KURL( cacheFile() ), -1, true, + mDownloadJob = TDEIO::file_copy( mDownloadUrl, KURL( cacheFile() ), -1, true, false, !mUseProgressManager ); - connect( mDownloadJob, TQT_SIGNAL( result( KIO::Job * ) ), - TQT_SLOT( slotLoadJobResult( KIO::Job * ) ) ); + connect( mDownloadJob, TQT_SIGNAL( result( TDEIO::Job * ) ), + TQT_SLOT( slotLoadJobResult( TDEIO::Job * ) ) ); if ( mUseProgressManager ) { - connect( mDownloadJob, TQT_SIGNAL( percent( KIO::Job *, unsigned long ) ), - TQT_SLOT( slotPercent( KIO::Job *, unsigned long ) ) ); + connect( mDownloadJob, TQT_SIGNAL( percent( TDEIO::Job *, unsigned long ) ), + TQT_SLOT( slotPercent( TDEIO::Job *, unsigned long ) ) ); mProgress = KPIM::ProgressManager::createProgressItem( KPIM::ProgressManager::getUniqueID(), i18n("Downloading Calendar") ); @@ -213,14 +213,14 @@ bool ResourceRemote::doLoad() return true; } -void ResourceRemote::slotPercent( KIO::Job *, unsigned long percent ) +void ResourceRemote::slotPercent( TDEIO::Job *, unsigned long percent ) { kdDebug() << "ResourceRemote::slotPercent(): " << percent << endl; mProgress->setProgress( percent ); } -void ResourceRemote::slotLoadJobResult( KIO::Job *job ) +void ResourceRemote::slotLoadJobResult( TDEIO::Job *job ) { if ( job->error() ) { // TODO: Should detect 404, 401 etc. vs host not found and prompt to create new resource only when 404 is returned @@ -282,9 +282,9 @@ bool ResourceRemote::doSave() saveCache(); - mUploadJob = KIO::file_copy( KURL( cacheFile() ), mUploadUrl, -1, true ); - connect( mUploadJob, TQT_SIGNAL( result( KIO::Job * ) ), - TQT_SLOT( slotSaveJobResult( KIO::Job * ) ) ); + mUploadJob = TDEIO::file_copy( KURL( cacheFile() ), mUploadUrl, -1, true ); + connect( mUploadJob, TQT_SIGNAL( result( TDEIO::Job * ) ), + TQT_SLOT( slotSaveJobResult( TDEIO::Job * ) ) ); return true; } @@ -294,7 +294,7 @@ bool ResourceRemote::isSaving() return mUploadJob; } -void ResourceRemote::slotSaveJobResult( KIO::Job *job ) +void ResourceRemote::slotSaveJobResult( TDEIO::Job *job ) { if ( job->error() ) { job->showErrorDialog( 0 ); |