app->connect( app, SIGNAL(lastWindowClosed()), app, SLOT(quit()) ); app->connect( app, SIGNAL(aboutToQuit()), app, SLOT(quit()) );
int retVal = app->exec();
qDebug() << "App exiting with code:" << QString::number(retVal);
//you can do whatever here
return retVal;
//you can do whatever here