From f891e462a442c743c509a03f98c46074ee02d6d8 Mon Sep 17 00:00:00 2001 From: Richard Rauch Date: Fri, 31 Oct 2003 20:51:56 +0000 Subject: [PATCH] Cleaned up one macro definition. Picked up an over-long line that I missed before. git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@284 7f0cb862-5218-0410-a997-914c9d46530a --- src/freeglut_callbacks.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/freeglut_callbacks.c b/src/freeglut_callbacks.c index b0750d1..43ccc4b 100644 --- a/src/freeglut_callbacks.c +++ b/src/freeglut_callbacks.c @@ -40,8 +40,10 @@ /* * All of the callbacks setting methods can be generalized to this: */ -#define SET_CALLBACK(a) if( fgStructure.Window == NULL ) return;\ - fgStructure.Window->Callbacks.a = callback; +#define SET_CALLBACK(a) \ + if( fgStructure.Window == NULL ) \ + return; \ + fgStructure.Window->Callbacks.a = callback; /* * Sets the Display callback for the current window @@ -92,7 +94,8 @@ void FGAPIENTRY glutIdleFunc( void (* callback)( void ) ) /* * Sets the Timer callback for the current window */ -void FGAPIENTRY glutTimerFunc( unsigned int timeOut, void (* callback)( int ), int timerID ) +void FGAPIENTRY glutTimerFunc( unsigned int timeOut, void (* callback)( int ), + int timerID ) { SFG_Timer* timer; @@ -227,7 +230,7 @@ void FGAPIENTRY glutWMCloseFunc( void (* callback)( void ) ) void FGAPIENTRY glutMenuDestroyFunc( void (* callback)( void ) ) { if( fgStructure.Menu == NULL ) - return; + return; fgStructure.Menu->Destroy = callback; } -- 1.7.10.4