/**
  * processes each row returned from db
  *
  * overrides function from {@link ContactList};
  * saves the dates from db to {@link $dates}, then passes
  * contoll to {@link ContactList::processQueryResults()}
  */
 function processQueryResult($r)
 {
     $this->dates[] = array('type' => $r['label'], 'daysAway' => $r['daysAway'], 'repeat' => $r['type'], 'ongoing' => $r['ongoing'], 'day' => $r['day'], 'month' => $r['month'], 'year' => $r['year']);
     parent::processQueryResult($r);
 }