CVS commit by buis: The Action takes the responsibility of cleaning up the popup now, this fixes the crash when quitting karbon... M +1 -1 kocontexthelp.cc 1.9 --- koffice/lib/kofficeui/kocontexthelp.cc #1.8:1.9 @@ -424,5 +424,5 @@ KoContextHelpAction::KoContextHelpAction : KToggleAction( i18n( "Context help" ), BarIcon( "help" ), KShortcut( "CTRL+SHIFT+F1" ), 0, 0, parent, "help_context" ) { - m_popup = new KoContextHelpPopup( popupParent ); + m_popup = new KoContextHelpPopup( 0L ); connect( m_popup, SIGNAL( wantsToBeClosed() ), this, SLOT( closePopup() ) ); connect( this, SIGNAL( toggled( bool ) ), m_popup, SLOT( setShown( bool ) ) );