I have a QHttp object.
	
	- http  = new QHttp("http://localhost"- ,  80)- ; 
-   http->get("http://localhost/easyadvice/images/logo.jpg", 0); 
-   . 
-   . 
-   . 
-   connect(http, SIGNAL(readyRead()), this, SLOT(read())); 
        http = new QHttp("http://localhost", 80);
  http->get("http://localhost/easyadvice/images/logo.jpg", 0);
  .
  .
  .
  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 ?
				
			
Bookmarks