Cleaned up one macro definition.
authorRichard Rauch <rkr@olib.org>
Fri, 31 Oct 2003 20:51:56 +0000 (20:51 +0000)
committerRichard Rauch <rkr@olib.org>
Fri, 31 Oct 2003 20:51:56 +0000 (20:51 +0000)
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

index b0750d1..43ccc4b 100644 (file)
 /*
  * 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;
 }