summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2005-11-06 22:26:54 +0000
committerMatthias Melcher <fltk@matthiasm.com>2005-11-06 22:26:54 +0000
commit595879b3006f958929c896403b9934d40430f52d (patch)
tree407a5f1846c31be03f3aee2bf6721380464d37ff /src
parent8bcfae7b114e035fcebf2a09e6cfa87ad5ce1b97 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/Fl_mac.cxx2
1 files changed, 1 insertions, 1 deletions
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...