summaryrefslogtreecommitdiffstats
path: root/kmail/mboxjob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/mboxjob.cpp')
-rw-r--r--kmail/mboxjob.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kmail/mboxjob.cpp b/kmail/mboxjob.cpp
index 1b6b3223..93f94d43 100644
--- a/kmail/mboxjob.cpp
+++ b/kmail/mboxjob.cpp
@@ -18,11 +18,11 @@
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of this program with any edition of
- * the Qt library by Trolltech AS, Norway (or with modified versions
- * of Qt that use the same license as Qt), and distribute linked
+ * the TQt library by Trolltech AS, Norway (or with modified versions
+ * of TQt that use the same license as TQt), and distribute linked
* combinations including the two. You must obey the GNU General
* Public License in all respects for all of the code used other than
- * Qt. If you modify this file, you may extend this exception to
+ * TQt. If you modify this file, you may extend this exception to
* your version of the file, but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from
* your version.
@@ -72,9 +72,9 @@ MboxJob::execute()
//-----------------------------------------------------------------------------
void
-MboxJob::setParent( const KMFolderMbox *parent )
+MboxJob::setParent( const KMFolderMbox *tqparent )
{
- mParent = const_cast<KMFolderMbox*>( parent );
+ mParent = const_cast<KMFolderMbox*>( tqparent );
}
//-----------------------------------------------------------------------------
@@ -82,14 +82,14 @@ void
MboxJob::startJob()
{
KMMessage *msg = mMsgList.first();
- assert( (msg && ( mParent || msg->parent() )) );
+ assert( (msg && ( mParent || msg->tqparent() )) );
switch( mType ) {
case tGetMessage:
{
kdDebug(5006)<<msg<<endl;
kdDebug(5006)<<this<<endl;
kdDebug(5006)<<"Done"<<endl;
- //KMMessage* msg = mParent->getMsg( mParent->find( mMsgList.first() ) );
+ //KMMessage* msg = mParent->getMsg( mParent->tqfind( mMsgList.first() ) );
msg->setComplete( true );
emit messageRetrieved( msg );
}