diff options
author | Michele Calgaro <[email protected]> | 2023-11-18 16:43:52 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-20 13:18:04 +0900 |
commit | 4a6f4a17320917d60610036649b6192289c3f4a5 (patch) | |
tree | 27f568667018288fd8ba55ba98f8266867104db2 /konqueror/konq_run.cpp | |
parent | 06606d2ade0b66ab64cee3da0ac9792f55359121 (diff) | |
download | tdebase-4a6f4a17320917d60610036649b6192289c3f4a5.tar.gz tdebase-4a6f4a17320917d60610036649b6192289c3f4a5.zip |
Replace various strings '#define'd in tqtinterface
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 8f924d271a4771b8046697fefd778d895a54d93d)
Diffstat (limited to 'konqueror/konq_run.cpp')
-rw-r--r-- | konqueror/konq_run.cpp | 4 |
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& ) )); |