I'm reading a file and using a progress bar.
Qt Code:
while(!in.atEnd()){ //work ui->progressBar->setValue(in.pos()); }To copy to clipboard, switch view to plain text mode
During this event, there is the possibility that a signal is emitted, the issue is that I can't detect it because of the QEventLoop.
Bookmarks