https://bugzilla.novell.com/show_bug.cgi?id=382771 User sh@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=382771#c4 Stefan Hundhammer <sh@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #4 from Stefan Hundhammer <sh@novell.com> 2008-04-23 07:55:42 MST --- My fault. In a recent change, YWidgetEvent::widget() was moved up to the YEvent base class. The dynamic_cast was no longer necessary, but unfortunately the check for null event pointers still is. Fix: Index: YDialog.cc =================================================================== --- YDialog.cc (revision 46984) +++ YDialog.cc (working copy) @@ -290,7 +290,7 @@ // If there was no event or if filterInvalidEvents() discarded // an invalid event, go back and get the next one. - if ( event->widget() ) + if ( event && event->widget() ) { YPushButton * button = dynamic_cast<YPushButton *> ( event->widget() ); -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.