Looks like those two signatures don't match:

Qt Code:
  1. SLOT(update(const QModelIndex&)));
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. void FetchThread::update(QModelIndex &index)
To copy to clipboard, switch view to plain text mode 

Note the lack of the "const" modifier in the second signature.