View Single Post
Posts: 435 | Thanked: 769 times | Joined on Apr 2010
#107
Originally Posted by tetris11_ View Post
My main problem is the QCoreApplication::exit() thing which I dont understand, but I know is VERY neccesary for running a kill script before the application terminates....
The application closes when you click on the top right X of the top window(the one called in main function) inside the app, or the X in task manager, or when you call the function qApp->exit() (which is the inherited QCoreApplication::exit() you wrote; qApp is a global pointer to your QApplication istance) . When the app closes, the event loop handles all closing events, so you can put the kill all execution inside the main window destructor, MainWindow::~MainWindow() usually with QtCreator, to make it launch when the app is closing.
 

The Following User Says Thank You to gionni88 For This Useful Post: