From 53f21146d3dbb405e402e3e1c364361757269848 Mon Sep 17 00:00:00 2001 From: Diederick Niehorster Date: Mon, 19 Nov 2012 13:16:17 +0000 Subject: [PATCH 1/1] pulling in cleanup from r1442 git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1443 7f0cb862-5218-0410-a997-914c9d46530a --- src/mswin/fg_main_mswin.c | 2 +- src/mswin/fg_state_mswin.c | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/mswin/fg_main_mswin.c b/src/mswin/fg_main_mswin.c index 3013f80..f8879c6 100644 --- a/src/mswin/fg_main_mswin.c +++ b/src/mswin/fg_main_mswin.c @@ -566,7 +566,7 @@ LRESULT CALLBACK fgPlatformWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, case WM_PAINT: /* Turn on the visibility in case it was turned off somehow */ window->State.Visible = GL_TRUE; - InvalidateRect( hWnd, NULL, GL_FALSE ); /* Make sure whole window is repainted. Bit of a hack, but a safe on from what google turns up... */ + InvalidateRect( hWnd, NULL, GL_FALSE ); /* Make sure whole window is repainted. Bit of a hack, but a safe one from what google turns up... */ BeginPaint( hWnd, &ps ); fghRedrawWindow( window ); EndPaint( hWnd, &ps ); diff --git a/src/mswin/fg_state_mswin.c b/src/mswin/fg_state_mswin.c index 9ce47fa..9df5211 100644 --- a/src/mswin/fg_state_mswin.c +++ b/src/mswin/fg_state_mswin.c @@ -210,7 +210,7 @@ int fgPlatformGlutGet ( GLenum eWhat ) break; case GLUT_WINDOW_BORDER_WIDTH : - case GLUT_WINDOW_HEADER_HEIGHT : + case GLUT_WINDOW_BORDER_HEIGHT : #if defined(_WIN32_WCE) return 0; #else @@ -249,8 +249,7 @@ int fgPlatformGlutGet ( GLenum eWhat ) { case GLUT_WINDOW_BORDER_WIDTH: return borderWidth; - case GLUT_WINDOW_HEADER_HEIGHT: - /* Need to query for WS_MAXIMIZEBOX to see if we have a title bar, the WS_CAPTION query is also true for a WS_DLGFRAME only... */ + case GLUT_WINDOW_BORDER_HEIGHT: return captionHeight; } } -- 1.7.10.4