Hello!
How properly pass callback or call user function while finish() emmited?
I can't pass like that:
Qt Code:
  1. typedef void(*ptr)(const void *);
  2. ...
  3. public slots:
  4. void reply(QNetworkReply* reply, ptr);
  5. ...
  6. connect(manager, SIGNAL(finished(QNetworkReply*)), this, SLOT(replyFinished(QNetworkReply*, ptr)));
To copy to clipboard, switch view to plain text mode 
Due to incompatible sender/receiver arguments.

Please explain some response processing "technics".

Best regards.