Hello,
Ive noticed something strange in the rss listing example(http://doc.trolltech.com/4.4/xml-rss...sting-cpp.html)

readyread signal of http object is connected to readdata slot:

Qt Code:
  1. connect(&http, SIGNAL(readyRead(const QHttpResponseHeader &)),
  2. this, SLOT(readData(const QHttpResponseHeader &)));
To copy to clipboard, switch view to plain text mode 

when debugging the application; after http.get(url.path()) is called once,
readyRead signal is emitted "twice"..requestFinished signal is also emitted twice..

Can anybody give me an explanation about that situation...

Thanks..