summaryrefslogtreecommitdiffstats
path: root/konqueror/konq_run.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konqueror/konq_run.cpp')
-rw-r--r--konqueror/konq_run.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/konqueror/konq_run.cpp b/konqueror/konq_run.cpp
index 8c2a91329..ecd03d3c4 100644
--- a/konqueror/konq_run.cpp
+++ b/konqueror/konq_run.cpp
@@ -148,7 +148,7 @@ void KonqRun::init()
KParts::BrowserRun::init();
// Maybe init went to the "let's try stat'ing" part. Then connect to info messages.
// (in case it goes to scanFile, this will be done below)
- TDEIO::StatJob *job = tqt_dynamic_cast<TDEIO::StatJob*>( m_job );
+ TDEIO::StatJob *job = dynamic_cast<TDEIO::StatJob*>( m_job );
if ( job && !job->error() && m_pView ) {
connect( job, TQT_SIGNAL( infoMessage( TDEIO::Job*, const TQString& ) ),
m_pView, TQT_SLOT( slotInfoMessage(TDEIO::Job*, const TQString& ) ) );
@@ -160,7 +160,7 @@ void KonqRun::scanFile()
KParts::BrowserRun::scanFile();
// could be a static cast as of now, but who would notify when
// BrowserRun changes
- TDEIO::TransferJob *job = tqt_dynamic_cast<TDEIO::TransferJob*>( m_job );
+ TDEIO::TransferJob *job = dynamic_cast<TDEIO::TransferJob*>( m_job );
if ( job && !job->error() ) {
connect( job, TQT_SIGNAL( redirection( TDEIO::Job *, const KURL& )),
TQT_SLOT( slotRedirection( TDEIO::Job *, const KURL& ) ));