From 849c81162c4ffd767f96232a6c91190700a0a6fd Mon Sep 17 00:00:00 2001 From: smh Date: Tue, 20 Dec 2011 14:26:10 +0000 Subject: [PATCH] Fix for sigmentation at the exit from ACHERON. Delayed delete. --- src/SUIT/SUIT_Application.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SUIT/SUIT_Application.cxx b/src/SUIT/SUIT_Application.cxx index ead59e4c4..9f6cf36bd 100755 --- a/src/SUIT/SUIT_Application.cxx +++ b/src/SUIT/SUIT_Application.cxx @@ -253,8 +253,8 @@ void SUIT_Application::setDesktop( SUIT_Desktop* desk ) { if ( myDesktop == desk ) return; - - delete myDesktop; + //workaround about Qt 4.7.1 bug: SIGSEGV on desktop delete + myDesktop->deleteLater(); //delete myDesktop; myDesktop = desk; if ( myDesktop ) { connect( myDesktop, SIGNAL( activated() ), this, SLOT( onDesktopActivated() ) ); -- 2.39.2