Added missing comma in Mac OS X code
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4641 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
8bcfae7b11
commit
595879b300
@ -1782,7 +1782,7 @@ void Fl_X::make(Fl_Window* w)
|
||||
OSStatus ret;
|
||||
EventHandlerUPP mousewheelHandler = NewEventHandlerUPP( carbonMousewheelHandler ); // will not be disposed by Carbon...
|
||||
static EventTypeSpec mousewheelEvents[] = {
|
||||
{ kEventClassMouse, 11 } // "11" is the yet unlabled "MightyMouse" wheel event - sigh!
|
||||
{ kEventClassMouse, 11 }, // "11" is the yet unlabled "MightyMouse" wheel event - sigh!
|
||||
{ kEventClassMouse, kEventMouseWheelMoved } };
|
||||
ret = InstallWindowEventHandler( x->xid, mousewheelHandler, 2, mousewheelEvents, w, 0L );
|
||||
EventHandlerUPP mouseHandler = NewEventHandlerUPP( carbonMouseHandler ); // will not be disposed by Carbon...
|
||||
|
Loading…
Reference in New Issue
Block a user