diff options
Diffstat (limited to 'kmail/copyfolderjob.cpp')
-rw-r--r-- | kmail/copyfolderjob.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kmail/copyfolderjob.cpp b/kmail/copyfolderjob.cpp index 165d94685..a237db100 100644 --- a/kmail/copyfolderjob.cpp +++ b/kmail/copyfolderjob.cpp @@ -95,8 +95,8 @@ void CopyFolderJob::copyMessagesToTargetDir() slotCopyNextChild(); // no contents, check subfolders } else { KMCommand *command = new KMCopyCommand( mNewFolder, msgList ); - connect( command, TQT_SIGNAL( completed( KMCommand * ) ), - this, TQT_SLOT( slotCopyCompleted( KMCommand * ) ) ); + connect( command, TQ_SIGNAL( completed( KMCommand * ) ), + this, TQ_SLOT( slotCopyCompleted( KMCommand * ) ) ); command->start(); } } @@ -104,8 +104,8 @@ void CopyFolderJob::copyMessagesToTargetDir() void CopyFolderJob::slotCopyCompleted( KMCommand* command ) { kdDebug(5006) << k_funcinfo << (command?command->result():0) << endl; - disconnect( command, TQT_SIGNAL( completed( KMCommand * ) ), - this, TQT_SLOT( slotCopyCompleted( KMCommand * ) ) ); + disconnect( command, TQ_SIGNAL( completed( KMCommand * ) ), + this, TQ_SLOT( slotCopyCompleted( KMCommand * ) ) ); mStorage->blockSignals( false ); @@ -160,8 +160,8 @@ void CopyFolderJob::slotCopyNextChild( bool success ) // let it do its thing and report back when we are ready to do the next sibling mNextChildFolder->open( "copyfolder" ); // refcount FolderJob* job = new CopyFolderJob( mNextChildFolder->storage(), dir); - connect( job, TQT_SIGNAL( folderCopyComplete( bool ) ), - this, TQT_SLOT( slotCopyNextChild( bool ) ) ); + connect( job, TQ_SIGNAL( folderCopyComplete( bool ) ), + this, TQ_SLOT( slotCopyNextChild( bool ) ) ); job->start(); } @@ -194,8 +194,8 @@ bool CopyFolderJob::createTargetDir() TQString imapPath; imapPath = anAccount->createImapPath( selectedStorage->imapPath(), mStorage->folder()->name() ); KMFolderImap* newStorage = static_cast<KMFolderImap*>( mNewFolder->storage() ); - connect( selectedStorage, TQT_SIGNAL(folderCreationResult(const TQString&, bool)), - this, TQT_SLOT(folderCreationDone(const TQString&, bool)) ); + connect( selectedStorage, TQ_SIGNAL(folderCreationResult(const TQString&, bool)), + this, TQ_SLOT(folderCreationDone(const TQString&, bool)) ); selectedStorage->createFolder(mStorage->folder()->name(), TQString()); // create it on the server newStorage->initializeFrom( selectedStorage, imapPath, TQString() ); static_cast<KMFolderImap*>(mNewParent->owner()->storage())->setAccount( selectedStorage->account() ); |