diff options
Diffstat (limited to 'tdeio')
-rw-r--r-- | tdeio/tdefile/kpropertiesdialog.cpp | 2 | ||||
-rw-r--r-- | tdeio/tdeio/job.cpp | 4 | ||||
-rw-r--r-- | tdeio/tdeio/krun.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tdeio/tdefile/kpropertiesdialog.cpp b/tdeio/tdefile/kpropertiesdialog.cpp index 58d58688b..57e794d27 100644 --- a/tdeio/tdefile/kpropertiesdialog.cpp +++ b/tdeio/tdefile/kpropertiesdialog.cpp @@ -1450,7 +1450,7 @@ void KFilePropsPlugin::slotCopyFinished( TDEIO::Job * job ) void KFilePropsPlugin::applyIconChanges() { - TDEIconButton *iconButton = ::tqqt_cast<TDEIconButton *>( iconArea ); + TDEIconButton *iconButton = ::tqt_cast<TDEIconButton *>( iconArea ); if ( !iconButton || !d->bIconChanged ) return; // handle icon changes - only local files (or pseudo-local) for now diff --git a/tdeio/tdeio/job.cpp b/tdeio/tdeio/job.cpp index bb5ed8178..8bbbebc03 100644 --- a/tdeio/tdeio/job.cpp +++ b/tdeio/tdeio/job.cpp @@ -3171,7 +3171,7 @@ void CopyJob::slotResultCopyingFiles( Job * job ) } else { - if ( m_bCurrentOperationIsLink && ::tqqt_cast<TDEIO::DeleteJob*>( job ) ) + if ( m_bCurrentOperationIsLink && ::tqt_cast<TDEIO::DeleteJob*>( job ) ) { // Very special case, see a few lines below // We are deleting the source of a symlink we successfully moved... ignore error @@ -3188,7 +3188,7 @@ void CopyJob::slotResultCopyingFiles( Job * job ) { // Special case for moving links. That operation needs two jobs, unlike others. if ( m_bCurrentOperationIsLink && m_mode == Move - && !::tqqt_cast<TDEIO::DeleteJob *>( job ) // Deleting source not already done + && !::tqt_cast<TDEIO::DeleteJob *>( job ) // Deleting source not already done ) { subjobs.remove( job ); diff --git a/tdeio/tdeio/krun.cpp b/tdeio/tdeio/krun.cpp index 44b383915..ca08c9d85 100644 --- a/tdeio/tdeio/krun.cpp +++ b/tdeio/tdeio/krun.cpp @@ -1348,7 +1348,7 @@ void KRun::foundMimeType( const TQString& type ) return; } */ - TDEIO::TransferJob *job = ::tqqt_cast<TDEIO::TransferJob *>( m_job ); + TDEIO::TransferJob *job = ::tqt_cast<TDEIO::TransferJob *>( m_job ); if ( job ) { job->putOnHold(); |