We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8c6fe1 commit f27c3c1Copy full SHA for f27c3c1
src/cpp/handler/handlerapp.cpp
@@ -396,6 +396,8 @@ HandlerApp::HandlerApp(QObject *parent) :
396
397
HandlerApp::~HandlerApp()
398
{
399
+ d->hupConnection.disconnect();
400
+ d->quitConnection.disconnect();
401
delete d;
402
}
403
src/cpp/handler/handlermain.cpp
@@ -41,6 +41,12 @@ class HandlerAppMain
41
delete app;
42
QCoreApplication::exit(returnCode);
43
44
+
45
+ ~HandlerAppMain()
46
+ {
47
+ app->~HandlerApp();
48
+ delete app;
49
+ }
50
};
51
52
extern "C" {
0 commit comments