Renome method

wilder-work
Montel Laurent 9 years ago
parent 182ba7d61d
commit 5765b578aa
  1. 4
      src/folderarchive/folderarchiveagentjob.cpp
  2. 2
      src/folderarchive/folderarchiveagentjob.h

@ -63,13 +63,13 @@ void FolderArchiveAgentJob::start()
} else {
FolderArchiveAgentCheckCollection *checkCol = new FolderArchiveAgentCheckCollection(mInfo, this);
connect(checkCol, &FolderArchiveAgentCheckCollection::collectionIdFound, this, &FolderArchiveAgentJob::slotCollectionIdFound);
connect(checkCol, &FolderArchiveAgentCheckCollection::checkFailed, this, &FolderArchiveAgentJob::slotCheckFailder);
connect(checkCol, &FolderArchiveAgentCheckCollection::checkFailed, this, &FolderArchiveAgentJob::slotCheckFailed);
checkCol->start();
}
}
}
void FolderArchiveAgentJob::slotCheckFailder(const QString &message)
void FolderArchiveAgentJob::slotCheckFailed(const QString &message)
{
sendError(i18n("Cannot fetch collection. %1", message));
}

@ -37,7 +37,7 @@ public:
private Q_SLOTS:
void slotFetchCollection(KJob *job);
void sloMoveMailsToCollection(const Akonadi::Collection &col);
void slotCheckFailder(const QString &message);
void slotCheckFailed(const QString &message);
void slotCollectionIdFound(const Akonadi::Collection &col);
void slotMoveMessages(KMMoveCommand *);
private:

Loading…
Cancel
Save