Im new in Qt and im trying to understand the following signal-slot connection:
m_networkManager = new QNetworkAccessManager(this);
QNetworkReply *reply = m_n
It's not possible for the finished() signal to emit because you haven't yielded to the event loop yet. Even if somehow the get request got sent and then came back, your code is still executing and will continue to execute until you've yielded to the event loop. Only then will the reply object ever get a chance to actually do anything, such as parsing the get response and emitting the corresponding signal.