Remove connect to removed slot.

This seems to have slipped back in, probably during a complex merge
in ba8b1bbe06.
This commit is contained in:
Christian Kamm 2015-02-11 08:11:32 +01:00
parent 377887871c
commit 51b9ec30a9

View file

@ -301,7 +301,6 @@ void Folder::slotRunEtagJob()
_requestEtagJob = new RequestEtagJob(account, remotePath(), this);
// check if the etag is different
QObject::connect(_requestEtagJob, SIGNAL(etagRetreived(QString)), this, SLOT(etagRetreived(QString)));
QObject::connect(_requestEtagJob, SIGNAL(networkError(QNetworkReply*)), this, SLOT(slotNetworkUnavailable()));
FolderMan::instance()->slotScheduleETagJob(alias(), _requestEtagJob);
// The _requestEtagJob is auto deleting itself on finish. Our guard pointer _requestEtagJob will then be null.
}