I am using Qt signals and slots. I use the following signal-slot call.
connect(this, SIGNAL(loadFinished(bool)), this, SLOT(finishedLoadNotification(bool)));

When the signal loadFinished is emitted, the slot finishedLoadNotification is called. In finishedLoadNotification, the variable 'ok' is always false. I want to know where the value of 'ok' is being set to false. From the code, I have not been able to find the value of 'ok'. Can you please help me in finding out where the variable 'ok' is set to false.