Converted the odd double spaces into 4 space tabs
This commit is contained in:
parent
62fa02baf8
commit
39eb9e3342
@ -442,17 +442,17 @@ void fgPlatformProcessSingleEvent ( void )
|
||||
}
|
||||
|
||||
case NAVIGATOR_EXIT:
|
||||
{
|
||||
LOGI("fgPlatformProcessSingleEvent: NAVIGATOR_EXIT");
|
||||
/* User closed the application for good, let's kill the window */
|
||||
{
|
||||
SFG_Window* window = fgStructure.CurrentWindow;
|
||||
if (window != NULL) {
|
||||
fgDestroyWindow(window);
|
||||
} else {
|
||||
LOGW("NAVIGATOR_EXIT: No current window");
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case NAVIGATOR_SWIPE_DOWN:
|
||||
case NAVIGATOR_BACK:
|
||||
|
@ -85,6 +85,7 @@ int fgPlatformGlutGet ( GLenum eWhat )
|
||||
case GLUT_WINDOW_HEIGHT:
|
||||
return size[1];
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case GLUT_WINDOW_COLORMAP_SIZE:
|
||||
|
@ -166,6 +166,7 @@ void fgPlatformHideWindow( SFG_Window *window )
|
||||
*/
|
||||
void fgPlatformIconifyWindow( SFG_Window *window )
|
||||
{
|
||||
//XXX This is possible via Cascades, but can't seem to find a C-level API
|
||||
fprintf(stderr, "fgPlatformGlutIconifyWindow: STUB\n");
|
||||
}
|
||||
|
||||
@ -182,7 +183,8 @@ void fgPlatformGlutSetWindowTitle( const char* title )
|
||||
*/
|
||||
void fgPlatformGlutSetIconTitle( const char* title )
|
||||
{
|
||||
fprintf(stderr, "fgPlatformGlutSetIconTitle: STUB\n");}
|
||||
fprintf(stderr, "fgPlatformGlutSetIconTitle: STUB\n");
|
||||
}
|
||||
|
||||
/*
|
||||
* Change the specified window's position
|
||||
|
Reference in New Issue
Block a user