This fixes mouse wheel handling in 64 bits where CGFloat has size different
from float.
Closes #12168.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66037
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// see http://lists.apple.com/archives/cocoa-dev/2007/Feb/msg00050.html
@interface NSEvent (DeviceDelta)
-- (float)deviceDeltaX;
-- (float)deviceDeltaY;
+- (CGFloat)deviceDeltaX;
+- (CGFloat)deviceDeltaY;
@end
void wxWidgetCocoaImpl::SetupMouseEvent( wxMouseEvent &wxevent , NSEvent * nsEvent )