Module: wine Branch: master Commit: 2baecad2c51e1474d8614b613879861a87339e52 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2baecad2c51e1474d8614b6138...
Author: Francois Gouget fgouget@free.fr Date: Thu Apr 18 18:58:05 2013 +0200
Assorted spelling fixes.
---
dlls/kernel32/tests/loader.c | 2 +- dlls/winemac.drv/opengl.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/kernel32/tests/loader.c b/dlls/kernel32/tests/loader.c index 20ae3ec..9fd5091 100644 --- a/dlls/kernel32/tests/loader.c +++ b/dlls/kernel32/tests/loader.c @@ -1437,7 +1437,7 @@ static void child_process(const char *dll_name, DWORD target_offset) break;
case 1: - case 2: /* ExitProcess will be called by PROCESS_DETACH handler */ + case 2: /* ExitProcess will be called by the PROCESS_DETACH handler */ ret = pRtlDllShutdownInProgress(); ok(!ret, "RtlDllShutdownInProgress returned %d\n", ret);
diff --git a/dlls/winemac.drv/opengl.c b/dlls/winemac.drv/opengl.c index 8a29d89..095514b 100644 --- a/dlls/winemac.drv/opengl.c +++ b/dlls/winemac.drv/opengl.c @@ -1751,7 +1751,7 @@ static BOOL macdrv_wglChoosePixelFormatARB(HDC hdc, const int *piAttribIList, bits per pixel instead of the mode's color bits. On Windows, color bits sometimes exceeds r+g+b (e.g. it's 32 for an R8G8B8A0 pixel format). If an app depends on that and requests WGL_COLOR_BITS_ARB == 32 and - expects that to match such a pixel format, we need to accomodate that. */ + expects that to match such a pixel format, we need to accommodate that. */ if (mode->alpha_bits) { if (mode->color_bits < color_bits) @@ -2133,7 +2133,7 @@ static BOOL macdrv_wglGetPixelFormatAttribivARB(HDC hdc, int iPixelFormat, int i of color bits. On Windows, color bits sometimes exceeds r+g+b (e.g. it's 32 for an R8G8B8A0 pixel format). If an app depends on that and expects that WGL_COLOR_BITS_ARB >= 32 for such a - pixel format, we need to accomodate that. */ + pixel format, we need to accommodate that. */ if (color_modes[pf->color_mode].alpha_bits) piValues[i] = color_modes[pf->color_mode].color_bits; else @@ -3124,7 +3124,7 @@ int macdrv_wglDescribePixelFormat(HDC hdc, int fmt, UINT size, PIXELFORMATDESCRI /* If the mode doesn't have alpha, return bits per pixel instead of color bits. On Windows, color bits sometimes exceeds r+g+b (e.g. it's 32 for an R8G8B8A0 pixel format). If an app depends on that and expects that - cColorBits >= 32 for such a pixel format, we need to accomodate that. */ + cColorBits >= 32 for such a pixel format, we need to accommodate that. */ if (mode->alpha_bits) descr->cColorBits = mode->color_bits; else