Esempio n. 1
0
void GoogleSession::httpResult(int id, bool errorFlag)
{
  if (id==authReqId) // Authentication result
    authResult(errorFlag);
  else if (id==groupsFetchId) // Groups fetch result
    groupsResult(errorFlag);  
  else if (id==contactsFetchId) // Groups fetch result
    contactsResult(errorFlag); 
  else
    qDebug() << "GoogleSession: Invalid response id" << id << "error:" << errorFlag;
}
bool ValidateDavAuthJob::finished()
{
    emit authResult(reply());
    return true;
}
Esempio n. 3
0
void ValidateDavAuthJob::finished()
{
    emit authResult(reply());
}