Good day,
I am moving (QDir::rename()) a bunch of files and would like the windowTitle display the name of each file as it's being moved, like this:
Code:
int num = fileList.size(); for (int i = 0; i < num; i++) { setWindowTitle(fileList[i]); map.rename(oldname, newname); }
But that title does not get set. In the borland days you did something called Application->ProcessMessages to get the main thread update is paint events, how do you do that in Qt?
Thanks, happy coding.