I have a customized QNetworkAccessManager and a QWebPage class, now I want to read the reply data of each request retrieved by the QWebPage.
Now I connected the finished() signal, but since QWebPage connected it first, and the first finished() slot of QWebPage would read all the data from the QNetworkReply object, thus the slot in QNetworkAccessManager would read nothing at all.
So can I "insert" a connection to the list of QObject's connections, instead of appending it?
QObjectPrivate
class so it's not exposed. – Nicholas Smith