Browse Source

#152 - Prevent crash on exit

Aditya Kulkarni 5 years ago
parent
commit
0f5835422d
  1. 2
      src/main.cpp

2
src/main.cpp

@ -138,7 +138,7 @@ class Application : public SignalHandler
public:
Application() : SignalHandler(SignalHandler::SIG_INT), w(nullptr) {}
~Application() { delete w; }
~Application() {}
int main(int argc, char *argv[]) {
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);

Loading…
Cancel
Save