From kde-commits Mon Dec 23 10:00:32 2002 From: =?utf-8?q?Rob=20Buis?= Date: Mon, 23 Dec 2002 10:00:32 +0000 To: kde-commits Subject: koffice/lib/kofficeui X-MARC-Message: https://marc.info/?l=kde-commits&m=104063772410497 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 ) ) );