fix broken connect() statement

This commit is contained in:
Daniel Molkentin 2013-11-07 12:50:55 +01:00
parent a42ff5a07c
commit 1238ab4f69

View file

@ -279,7 +279,7 @@ void Folder::slotPollTimerTimeout()
RequestEtagJob* job = new RequestEtagJob(AccountManager::instance()->account(), remotePath(), this);
// check if the etag is different
QObject::connect(job, SIGNAL(etagRetreived(QString)), this, SLOT(etagRetreived(QString)));
QObject::connect(job, SIGNAL(networkError()), this, SLOT(slotNetworkUnavailable()));
QObject::connect(job, SIGNAL(networkError(QNetworkReply *reply)), this, SLOT(slotNetworkUnavailable()));
}
}