Hello and Good Morning , I have problem using QT application . I am posting little code here
QApplication a(argc, argv);
QString path = qApp->applicationDirPath();
qApp->setQuitOnLastWindowClosed(false);
a.addLibraryPath(path+"/plugins");
TryQt w;
w.show();
return a.exec();
this is how i am starting my Application . In the Application (TryQt) i am creating several other QWidgets and Qwindows . The problem arises when I close the application The QMainWindow disappear seems like Program exited but it remains in the memory . ( I can see from Task Manager / Processes ) . I am also catching the closeEvent in my TryQt program and closing every thing possible i oppend in there . but still no use does any one has any idea why this is happening. thanks .//////