diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-30 19:52:58 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-30 19:52:58 -0600 |
commit | eda50d1bce626f021f5aef550280f7e6638e9832 (patch) | |
tree | 46155d0ed3389a19358b8a7a337eb1649830883d /certmanager/certmanager.cpp | |
parent | 09bd73fbd2ff59f5e6eb420a5c1f22d61ceeaf66 (diff) | |
download | tdepim-eda50d1bce626f021f5aef550280f7e6638e9832.tar.gz tdepim-eda50d1bce626f021f5aef550280f7e6638e9832.zip |
Rname KIOext
Diffstat (limited to 'certmanager/certmanager.cpp')
-rw-r--r-- | certmanager/certmanager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/certmanager/certmanager.cpp b/certmanager/certmanager.cpp index 9c1fe3891..b665c65f3 100644 --- a/certmanager/certmanager.cpp +++ b/certmanager/certmanager.cpp @@ -683,7 +683,7 @@ void CertManager::slotImportCertFromFile( const KURL & certURL ) updateImportActions( false ); // Download the cert - KIOext::StoredTransferJob* importJob = KIOext::storedGet( certURL ); + TDEIOext::StoredTransferJob* importJob = TDEIOext::storedGet( certURL ); importJob->setWindow( this ); connect( importJob, TQT_SIGNAL(result(TDEIO::Job*)), TQT_SLOT(slotImportResult(TDEIO::Job*)) ); } @@ -693,7 +693,7 @@ void CertManager::slotImportResult( TDEIO::Job* job ) if ( job->error() ) { job->showErrorDialog(); } else { - KIOext::StoredTransferJob* trJob = static_cast<KIOext::StoredTransferJob *>( job ); + TDEIOext::StoredTransferJob* trJob = static_cast<TDEIOext::StoredTransferJob *>( job ); startCertificateImport( trJob->data(), trJob->url().fileName() ); } @@ -1269,7 +1269,7 @@ void CertManager::slotCertificateExportResult( const GpgME::Error & err, const T if ( !checkOverwrite( url, overwrite, this ) ) return; - TDEIO::Job* uploadJob = KIOext::put( data, url, -1, overwrite, false /*resume*/ ); + TDEIO::Job* uploadJob = TDEIOext::put( data, url, -1, overwrite, false /*resume*/ ); uploadJob->setWindow( this ); connect( uploadJob, TQT_SIGNAL( result( TDEIO::Job* ) ), this, TQT_SLOT( slotUploadResult( TDEIO::Job* ) ) ); @@ -1388,7 +1388,7 @@ void CertManager::slotSecretKeyExportResult( const GpgME::Error & err, const TQB if ( !checkOverwrite( url, overwrite, this ) ) return; - TDEIO::Job* uploadJob = KIOext::put( data, url, -1, overwrite, false /*resume*/ ); + TDEIO::Job* uploadJob = TDEIOext::put( data, url, -1, overwrite, false /*resume*/ ); uploadJob->setWindow( this ); connect( uploadJob, TQT_SIGNAL( result( TDEIO::Job* ) ), this, TQT_SLOT( slotUploadResult( TDEIO::Job* ) ) ); |