Added braces to remove initialisation error

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28024 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2004-06-25 12:59:12 +00:00
parent 3413ceade8
commit 2cce9b1152

View File

@ -337,7 +337,8 @@ static void SetupMouseEvent( wxMouseEvent &wxevent , wxMacCarbonEvent &cEvent )
break ;
}
break ;
case kEventMouseWheelMoved :
case kEventMouseWheelMoved :
{
wxevent.SetEventType(wxEVT_MOUSEWHEEL ) ;
// EventMouseWheelAxis axis = cEvent.GetParameter<EventMouseWheelAxis>(kEventParamMouseWheelAxis, typeMouseWheelAxis) ;
@ -347,6 +348,7 @@ static void SetupMouseEvent( wxMouseEvent &wxevent , wxMacCarbonEvent &cEvent )
wxevent.m_wheelDelta = 1;
wxevent.m_linesPerAction = 1;
break ;
}
default :
wxevent.SetEventType(wxEVT_MOTION ) ;
break ;