I have a QHttp object.

Qt Code:
  1. http = new QHttp("http://localhost", 80);
  2. http->get("http://localhost/easyadvice/images/logo.jpg", 0);
  3. .
  4. .
  5. .
  6. connect(http, SIGNAL(readyRead()), this, SLOT(read()));
To copy to clipboard, switch view to plain text mode 

The console prints this message:
Object::connect: No such signal QHttp::readyRead()

What is wrong ?