I'll bet there is a reason sitting somewhere between the chair and the keyboard...I've got problem with my application crashing without reason on closing
Crashing on program exit is often the result of double deletion - you delete something twice by mistake, or you delete something that Qt owns and is deleting for you. It can also happen if you call "delete" rather than "deleteLater()" on a QObject that is still in use by the Qt libraries.
Bookmarks