diff src/video/cocoa/SDL_cocoamouse.m @ 5058:03db7d4b02b4

Moved function for consistency
author Sam Lantinga <slouken@libsdl.org>
date Thu, 20 Jan 2011 17:11:22 -0800
parents bdff53ed6c8b
children 2170edcdfbd0
line wrap: on
line diff
--- a/src/video/cocoa/SDL_cocoamouse.m	Fri Jan 21 00:15:18 2011 +0100
+++ b/src/video/cocoa/SDL_cocoamouse.m	Thu Jan 20 17:11:22 2011 -0800
@@ -108,11 +108,6 @@
 }
 
 void
-Cocoa_QuitMouse(_THIS)
-{
-}
-
-void
 Cocoa_HandleMouseWheel(SDL_Window *window, NSEvent *event)
 {
     float x = [event deltaX];
@@ -131,4 +126,9 @@
     SDL_SendMouseWheel(window, (int)x, (int)y);
 }
 
+void
+Cocoa_QuitMouse(_THIS)
+{
+}
+
 /* vi: set ts=4 sw=4 expandtab: */