Re-indentation style changes from John.

There should be no alterations to how the code performs.

(I modified how the X11 section of the set-cursor code is indented to
slightly better match (IMHO) the rest of his changes.)


git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@254 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
rkrolib 2003-10-28 19:37:09 +00:00
parent 6096e031d5
commit 12bdb86d17

View File

@ -76,9 +76,10 @@ void FGAPIENTRY glutSetCursor( int cursorID )
*/
{
Cursor cursor;
#define MAP_CURSOR(a,b) case a: cursor = XCreateFontCursor( fgDisplay.Display, b ); break;
# define MAP_CURSOR(a,b) case a: cursor = XCreateFontCursor( fgDisplay.Display, b ); break;
if( GLUT_CURSOR_FULL_CROSSHAIR == cursorID )
cursorID = GLUT_CURSOR_CROSSHAIR;
switch( cursorID )
{
MAP_CURSOR( GLUT_CURSOR_RIGHT_ARROW, XC_right_ptr);
@ -182,7 +183,6 @@ void FGAPIENTRY glutWarpPointer( int x, int y )
}
#endif
}
/*** END OF FILE ***/