Hello,
I have a slot, whose code is below :
this->Print("-> received");
this->current_step->setText(QString::number(this->current_step->text().toInt()+1));
this->update();
this->Print("-> executed");
current_text being a QLineEdit.
My problem is that the slot is executed synchronously - I mean the prints occurs at the right time, i.e. immediately next to each computation step has been completed, BUT the number displayed in the QLineEdit is only updated after all steps have been completed. So there is a delay between the time at which the setText() is executed and the time at which the widget display is updated. How to cope with this issue?
Thanks in advance for your help.

Caius