diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-08-15 15:41:01 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-08-15 15:41:01 -0500 |
commit | 097eb253b8c8a2a5d3ae864f152ff50006995ec5 (patch) | |
tree | e9ddc3a6b38faeaf7141a502df95a0e35c330e9d /src/kernel/qapplication.cpp | |
parent | 3af9b39a4b28b38dcdd955fd23b3a0e3a1106c95 (diff) | |
download | tqt3-097eb253b8c8a2a5d3ae864f152ff50006995ec5.tar.gz tqt3-097eb253b8c8a2a5d3ae864f152ff50006995ec5.zip |
Automated update from Qt3
Diffstat (limited to 'src/kernel/qapplication.cpp')
-rw-r--r-- | src/kernel/qapplication.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/kernel/qapplication.cpp b/src/kernel/qapplication.cpp index feeaf191a..210f2aa1f 100644 --- a/src/kernel/qapplication.cpp +++ b/src/kernel/qapplication.cpp @@ -1241,9 +1241,13 @@ TQApplication::~TQApplication() tqDebug( "Widgets left: %i Max widgets: %i \n", TQWidget::instanceCounter, TQWidget::maxInstances ); } #ifndef QT_NO_SESSIONMANAGER - delete session_manager; + if ( session_manager ) { + delete session_manager; + } session_manager = 0; - delete session_key; + if ( session_key ) { + delete session_key; + } session_key = 0; #endif //QT_NO_SESSIONMANAGER |