From 377e3e1f53b9db0855621668236b9127b3533361 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Fri, 17 Sep 2010 00:39:35 +0200 Subject: [PATCH] Formatting. --- src/cocoa/cocoa_window.m | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/cocoa/cocoa_window.m b/src/cocoa/cocoa_window.m index ee9ac522..e391eba1 100644 --- a/src/cocoa/cocoa_window.m +++ b/src/cocoa/cocoa_window.m @@ -39,13 +39,13 @@ _GLFWwindow* window; } -- (id)initWithGlfwWindow:(_GLFWwindow*)initWndow; +- (id)initWithGlfwWindow:(_GLFWwindow *)initWndow; @end @implementation GLFWWindowDelegate -- (id)initWithGlfwWindow:(_GLFWwindow*)initWindow +- (id)initWithGlfwWindow:(_GLFWwindow *)initWindow { self = [super init]; if (self != nil) @@ -91,22 +91,22 @@ window->positionY = flippedPos.y; } -- (void)windowDidMiniaturize:(NSNotification*)notification +- (void)windowDidMiniaturize:(NSNotification *)notification { window->iconified = GL_TRUE; } -- (void)windowDidDeminiaturize:(NSNotification*)notification +- (void)windowDidDeminiaturize:(NSNotification *)notification { window->iconified = GL_FALSE; } -- (void)windowDidBecomeKey:(NSNotification*)notification +- (void)windowDidBecomeKey:(NSNotification *)notification { _glfwLibrary.activeWindow = window; } -- (void)windowDidResignKey:(NSNotification*)notification +- (void)windowDidResignKey:(NSNotification *)notification { if (window == _glfwLibrary.activeWindow) _glfwLibrary.activeWindow = NULL; @@ -298,13 +298,13 @@ static int convertMacKeyCode(unsigned int macKeyCode) _GLFWwindow* window; } -- (id)initWithGlfwWindow:(_GLFWwindow*)initWindow; +- (id)initWithGlfwWindow:(_GLFWwindow *)initWindow; @end @implementation GLFWContentView -- (id)initWithGlfwWindow:(_GLFWwindow*)initWindow +- (id)initWithGlfwWindow:(_GLFWwindow *)initWindow { self = [super init]; if (self != nil)