From 06d429d6b6b6d63beaeda130a3bb261ef3b9fb41 Mon Sep 17 00:00:00 2001 From: Austin English Date: Thu, 27 Mar 2008 12:57:17 -0500 Subject: [PATCH] Spelling fixes. --- dlls/advapi32/service.c | 2 +- dlls/comctl32/rebar.c | 2 +- dlls/d3d8/directx.c | 2 +- dlls/dbghelp/stabs.c | 2 +- dlls/dinput/keyboard.c | 2 +- dlls/dinput/mouse.c | 2 +- dlls/dmime/performance.c | 6 +++--- dlls/dmime/segment.c | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/dlls/advapi32/service.c b/dlls/advapi32/service.c index 007d2b028bd..82b5d1210ea 100644 --- a/dlls/advapi32/service.c +++ b/dlls/advapi32/service.c @@ -2056,7 +2056,7 @@ QueryServiceConfigW( SC_HANDLE hService, * QueryServiceConfig2A [ADVAPI32.@] * * Note - * observed unter win2k: + * observed under win2k: * The functions QueryServiceConfig2A and QueryServiceConfig2W return the same * required buffer size (in byte) at least for dwLevel SERVICE_CONFIG_DESCRIPTION */ diff --git a/dlls/comctl32/rebar.c b/dlls/comctl32/rebar.c index 7b1f00842c9..033b47489bb 100644 --- a/dlls/comctl32/rebar.c +++ b/dlls/comctl32/rebar.c @@ -1153,7 +1153,7 @@ static int get_row_end_for_band(const REBAR_INFO *infoPtr, INT iBand) return iBand; } -/* Compute the rcBand.{left,right} from the cxEffective bands widths computed earier. +/* Compute the rcBand.{left,right} from the cxEffective bands widths computed earlier. * iBeginBand must be visible */ static void REBAR_SetRowRectsX(const REBAR_INFO *infoPtr, INT iBeginBand, INT iEndBand) { diff --git a/dlls/d3d8/directx.c b/dlls/d3d8/directx.c index c61824ddd25..6bffcb14226 100644 --- a/dlls/d3d8/directx.c +++ b/dlls/d3d8/directx.c @@ -295,7 +295,7 @@ ULONG WINAPI D3D8CB_DestroyRenderTarget(IWineD3DSurface *pSurface) { return IDirect3DSurface8_Release((IDirect3DSurface8*) surfaceParent); } -/* Callback for creating the implicite swapchain when the device is created */ +/* Callback for creating the implicit swapchain when the device is created */ static HRESULT WINAPI D3D8CB_CreateAdditionalSwapChain(IUnknown *device, WINED3DPRESENT_PARAMETERS* pPresentationParameters, IWineD3DSwapChain ** ppSwapChain){ diff --git a/dlls/dbghelp/stabs.c b/dlls/dbghelp/stabs.c index cc750c6dddf..d5978482ea4 100644 --- a/dlls/dbghelp/stabs.c +++ b/dlls/dbghelp/stabs.c @@ -1147,7 +1147,7 @@ static void pending_flush(struct pending_block* pending, struct module* module, * Ends function creation: mainly: * - cleans up line number information * - tries to set up a debug-start tag (FIXME: heuristic to be enhanced) - * - for stabs which have abolute address in them, initializes the size of the + * - for stabs which have absolute address in them, initializes the size of the * function (assuming that current function ends where next function starts) */ static void stabs_finalize_function(struct module* module, struct symt_function* func, diff --git a/dlls/dinput/keyboard.c b/dlls/dinput/keyboard.c index 82e50c3593d..87837ff0433 100644 --- a/dlls/dinput/keyboard.c +++ b/dlls/dinput/keyboard.c @@ -288,7 +288,7 @@ static HRESULT WINAPI SysKeyboardAImpl_GetDeviceState( } /****************************************************************************** - * GetCapabilities : get the device capablitites + * GetCapabilities : get the device capabilities */ static HRESULT WINAPI SysKeyboardAImpl_GetCapabilities( LPDIRECTINPUTDEVICE8A iface, diff --git a/dlls/dinput/mouse.c b/dlls/dinput/mouse.c index 3c3b3c3d8b5..1dc6a0331ff 100644 --- a/dlls/dinput/mouse.c +++ b/dlls/dinput/mouse.c @@ -590,7 +590,7 @@ static HRESULT WINAPI SysMouseAImpl_GetProperty(LPDIRECTINPUTDEVICE8A iface, } /****************************************************************************** - * GetCapabilities : get the device capablitites + * GetCapabilities : get the device capabilities */ static HRESULT WINAPI SysMouseAImpl_GetCapabilities( LPDIRECTINPUTDEVICE8A iface, diff --git a/dlls/dmime/performance.c b/dlls/dmime/performance.c index 9c518efde54..973010422db 100644 --- a/dlls/dmime/performance.c +++ b/dlls/dmime/performance.c @@ -239,7 +239,7 @@ static HRESULT WINAPI IDirectMusicPerformance8Impl_Init (LPDIRECTMUSICPERFORMANC This->pDirectMusic = (IDirectMusic8*) *ppDirectMusic; IDirectMusic8_AddRef(This->pDirectMusic); } else { - /* app allows the performance to initialise itfself and needs a pointer to object*/ + /* app allows the performance to initialise itself and needs a pointer to object*/ CoCreateInstance (&CLSID_DirectMusic, NULL, CLSCTX_INPROC_SERVER, &IID_IDirectMusic8, (void**)&This->pDirectMusic); if (ppDirectMusic) { *ppDirectMusic = (LPDIRECTMUSIC) This->pDirectMusic; @@ -758,7 +758,7 @@ static HRESULT WINAPI IDirectMusicPerformance8Impl_InitAudio (LPDIRECTMUSICPERFO IDirectMusicPerformance8Impl_Init(iface, ppDirectMusic, dsound, hWnd); - /* Init increases the ref count of the dsound object. Decremente it if the app don't want a pointer to the object. */ + /* Init increases the ref count of the dsound object. Decrement it if the app doesn't want a pointer to the object. */ if (NULL == ppDirectSound) { IDirectSound_Release(This->pDirectSound); } @@ -872,7 +872,7 @@ static HRESULT WINAPI IDirectMusicPerformance8Impl_CreateStandardAudioPath (LPDI desc.dwFlags |= DSBCAPS_CTRLFREQUENCY; break; case DMUS_APATH_SHARED_STEREOPLUSREVERB: - /* normally we havet to create 2 buffers (one for music other for reverb) + /* normally we have to create 2 buffers (one for music other for reverb) * in this case. See msdn */ case DMUS_APATH_DYNAMIC_STEREO: diff --git a/dlls/dmime/segment.c b/dlls/dmime/segment.c index 1daee42d3c7..a90bd4c8c5b 100644 --- a/dlls/dmime/segment.c +++ b/dlls/dmime/segment.c @@ -175,7 +175,7 @@ static HRESULT WINAPI IDirectMusicSegment8Impl_IDirectMusicSegment8_GetTrack (LP if (FALSE == IsEqualGUID(&GUID_NULL, rguidType)) { /** * it rguidType is not null we must check if CLSID are equals - * and the unqiue way to get it its using IPersistStream Interface + * and the unique way to get it is using IPersistStream Interface */ hr = IDirectMusicTrack_QueryInterface(pIt->pTrack, &IID_IPersistStream, (void**) &pCLSIDStream); if (FAILED(hr)) { -- 2.11.4.GIT