summaryrefslogtreecommitdiffstats
path: root/kmail/objecttreeparser_p.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 12:33:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-16 19:01:53 +0900
commitb0f8eef013163b2098c2bb07e93cb9b194338b80 (patch)
treec35221250699030822f3c616b393f77e1ce47036 /kmail/objecttreeparser_p.cpp
parentc2138cbe92142437d50f2e6cec6f8909da959234 (diff)
downloadtdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.tar.gz
tdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 3b3f9ec8f31978030c17309fae48335bea5c1587)
Diffstat (limited to 'kmail/objecttreeparser_p.cpp')
-rw-r--r--kmail/objecttreeparser_p.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/kmail/objecttreeparser_p.cpp b/kmail/objecttreeparser_p.cpp
index 683d3c4c..fbd2b4df 100644
--- a/kmail/objecttreeparser_p.cpp
+++ b/kmail/objecttreeparser_p.cpp
@@ -89,8 +89,8 @@ bool DecryptVerifyBodyPartMemento::start() {
m_dr = DecryptionResult( err );
return false;
}
- connect( m_job, TQT_SIGNAL(result(const GpgME::DecryptionResult&,const GpgME::VerificationResult&,const TQByteArray&)),
- this, TQT_SLOT(slotResult(const GpgME::DecryptionResult&,const GpgME::VerificationResult&,const TQByteArray&)) );
+ connect( m_job, TQ_SIGNAL(result(const GpgME::DecryptionResult&,const GpgME::VerificationResult&,const TQByteArray&)),
+ this, TQ_SLOT(slotResult(const GpgME::DecryptionResult&,const GpgME::VerificationResult&,const TQByteArray&)) );
setRunning( true );
return true;
}
@@ -155,8 +155,8 @@ bool VerifyDetachedBodyPartMemento::start() {
m_vr = VerificationResult( err );
return false;
}
- connect( m_job, TQT_SIGNAL(result(const GpgME::VerificationResult&)),
- this, TQT_SLOT(slotResult(const GpgME::VerificationResult&)) );
+ connect( m_job, TQ_SIGNAL(result(const GpgME::VerificationResult&)),
+ this, TQ_SLOT(slotResult(const GpgME::VerificationResult&)) );
setRunning( true );
return true;
}
@@ -218,9 +218,9 @@ bool VerifyDetachedBodyPartMemento::startKeyListJob()
assert( canStartKeyListJob() );
if ( const GpgME::Error err = m_keylistjob->start( keyListPattern() ) )
return false;
- connect( m_keylistjob, TQT_SIGNAL(done()), this, TQT_SLOT(slotKeyListJobDone()) );
- connect( m_keylistjob, TQT_SIGNAL(nextKey(const GpgME::Key&)),
- this, TQT_SLOT(slotNextKey(const GpgME::Key&)) );
+ connect( m_keylistjob, TQ_SIGNAL(done()), this, TQ_SLOT(slotKeyListJobDone()) );
+ connect( m_keylistjob, TQ_SIGNAL(nextKey(const GpgME::Key&)),
+ this, TQ_SLOT(slotNextKey(const GpgME::Key&)) );
return true;
}
@@ -261,8 +261,8 @@ bool VerifyOpaqueBodyPartMemento::start() {
m_vr = VerificationResult( err );
return false;
}
- connect( m_job, TQT_SIGNAL(result(const GpgME::VerificationResult&,const TQByteArray&)),
- this, TQT_SLOT(slotResult(const GpgME::VerificationResult&,const TQByteArray&)) );
+ connect( m_job, TQ_SIGNAL(result(const GpgME::VerificationResult&,const TQByteArray&)),
+ this, TQ_SLOT(slotResult(const GpgME::VerificationResult&,const TQByteArray&)) );
setRunning( true );
return true;
}
@@ -328,9 +328,9 @@ bool VerifyOpaqueBodyPartMemento::startKeyListJob()
assert( canStartKeyListJob() );
if ( const GpgME::Error err = m_keylistjob->start( keyListPattern() ) )
return false;
- connect( m_keylistjob, TQT_SIGNAL(done()), this, TQT_SLOT(slotKeyListJobDone()) );
- connect( m_keylistjob, TQT_SIGNAL(nextKey(const GpgME::Key&)),
- this, TQT_SLOT(slotNextKey(const GpgME::Key&)) );
+ connect( m_keylistjob, TQ_SIGNAL(done()), this, TQ_SLOT(slotKeyListJobDone()) );
+ connect( m_keylistjob, TQ_SIGNAL(nextKey(const GpgME::Key&)),
+ this, TQ_SLOT(slotNextKey(const GpgME::Key&)) );
return true;
}