Hi guys,

there is some basic thing I do not understand about the QNetworkAccessManager.
I was told to put only one into the Mainwindow object, used to handle every request caused by my program.
But according to this, how do I distinguish between two request done at nearly the same time — the NAM::finished - signal sends any reply of every kind to the slot it's connected to (let's assume it's named „resp”); but there might be some different action to be applied onto one of these replies.
For instance, at one time the program loads the XML file to find new updates. Also, there is requested The basic profile information of a facebook-user. Both is done with the NAM, so how do I find out if the incoming reply is the update or the profile data?

Greets, Lukas