Cleanup: Implicitly free QApplication

Instead of deleting the Application explicitly in exit_ui(),
use a unique_ptr to have the instance automatically freed.
This is the pattern given in the Qt-docs:
https://doc.qt.io/qt-5/qapplication.html

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-09-29 13:21:12 +02:00 committed by Dirk Hohndel
parent 1e1f33c0f5
commit 7343fe4cc6
3 changed files with 2 additions and 4 deletions

View file

@ -56,7 +56,6 @@ void exit_ui()
#ifndef SUBSURFACE_MOBILE
delete MainWindow::instance();
#endif // SUBSURFACE_MOBILE
delete qApp;
free((void *)existing_filename);
}