From 595879b3006f958929c896403b9934d40430f52d Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 6 Nov 2005 22:26:54 +0000 Subject: 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 --- src/Fl_mac.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Fl_mac.cxx b/src/Fl_mac.cxx index e97e0e3c7..f9f809ba1 100644 --- a/src/Fl_mac.cxx +++ b/src/Fl_mac.cxx @@ -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... -- cgit v1.2.3