It is just a small function. I wish to download a file from the Internet. I use the libcurl to download the file. The gui uses Qt.
I have three classes. First the MainWindow class, second the DownloadThread class based on the QThread, third the ShowProgress class based on QThread. In MainWindow I init the DownloadThread and the ShowProgress class. I want the first to download the file while the second one shows the download progress.
However the two threads can not run at the same time. the Download thread always runs first, and the ShowProgressThread starts after the Download thread finishes.
I have not determined the reason. Thanks for your help here.