Assorted spelling fixes.
This commit is contained in:
parent
8824bc1ea4
commit
633ee950a1
|
@ -1635,7 +1635,7 @@ static LRESULT COMBOEX_NCCreate (HWND hwnd)
|
|||
oldstyle = (DWORD)GetWindowLongW (hwnd, GWL_STYLE);
|
||||
newstyle = oldstyle & ~(WS_VSCROLL | WS_HSCROLL | WS_BORDER);
|
||||
if (newstyle != oldstyle) {
|
||||
TRACE("req style %08x, reseting style %08x\n",
|
||||
TRACE("req style %08x, resetting style %08x\n",
|
||||
oldstyle, newstyle);
|
||||
SetWindowLongW (hwnd, GWL_STYLE, newstyle);
|
||||
}
|
||||
|
|
|
@ -8506,7 +8506,7 @@ static LRESULT LISTVIEW_KillFocus(LISTVIEW_INFO *infoPtr)
|
|||
/* set window focus flag */
|
||||
infoPtr->bFocus = FALSE;
|
||||
|
||||
/* invalidate the selected items before reseting focus flag */
|
||||
/* invalidate the selected items before resetting focus flag */
|
||||
LISTVIEW_InvalidateSelectedItems(infoPtr);
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -844,7 +844,7 @@ static HRESULT IDirectMusicSegment8Impl_IPersistStream_ParseTrackForm (LPPERSIST
|
|||
|
||||
switch (Chunk.fccID) {
|
||||
case DMUS_FOURCC_TRACK_CHUNK: {
|
||||
TRACE_(dmfile)(": track chunck\n");
|
||||
TRACE_(dmfile)(": track chunk\n");
|
||||
IStream_Read (pStm, &track_hdr, sizeof(DMUS_IO_TRACK_HEADER), NULL);
|
||||
TRACE_(dmfile)(" - class: %s\n", debugstr_guid (&track_hdr.guidClassID));
|
||||
TRACE_(dmfile)(" - dwGroup: %d\n", track_hdr.dwGroup);
|
||||
|
@ -853,7 +853,7 @@ static HRESULT IDirectMusicSegment8Impl_IPersistStream_ParseTrackForm (LPPERSIST
|
|||
break;
|
||||
}
|
||||
case DMUS_FOURCC_TRACK_EXTRAS_CHUNK: {
|
||||
TRACE_(dmfile)(": track extras chunck\n");
|
||||
TRACE_(dmfile)(": track extras chunk\n");
|
||||
IStream_Read (pStm, &track_xhdr, sizeof(DMUS_IO_TRACK_EXTRAS_HEADER), NULL);
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -282,7 +282,7 @@ static HRESULT IDirectMusicStyleTrack_IPersistStream_ParseStyleRef (LPPERSISTSTR
|
|||
TRACE_(dmfile)(": %s chunk (size = %d)", debugstr_fourcc (Chunk.fccID), Chunk.dwSize);
|
||||
switch (Chunk.fccID) {
|
||||
case DMUS_FOURCC_TIME_STAMP_CHUNK: {
|
||||
TRACE_(dmfile)(": Time Stamp chunck\n");
|
||||
TRACE_(dmfile)(": Time Stamp chunk\n");
|
||||
pNewItem = HeapAlloc (GetProcessHeap (), HEAP_ZERO_MEMORY, sizeof(DMUS_PRIVATE_STYLE_ITEM));
|
||||
if (NULL == pNewItem) {
|
||||
ERR(": no more memory\n");
|
||||
|
|
|
@ -361,7 +361,7 @@ enum binary_type MODULE_GetBinaryType( HANDLE hfile, void **res_start, void **re
|
|||
* FALSE, if the file is not an executable or if the function fails.
|
||||
*
|
||||
* NOTES
|
||||
* The type of executable is a property that determines which subsytem an
|
||||
* The type of executable is a property that determines which subsystem an
|
||||
* executable file runs under. lpBinaryType can be set to one of the following
|
||||
* values:
|
||||
* SCS_32BIT_BINARY: A Win32 based application
|
||||
|
|
|
@ -1992,7 +1992,7 @@ static UINT ITERATE_CostFinalizeConditions(MSIRECORD *row, LPVOID param)
|
|||
if (MSI_EvaluateConditionW(package,Condition) == MSICONDITION_TRUE)
|
||||
{
|
||||
int level = MSI_RecordGetInteger(row,2);
|
||||
TRACE("Reseting feature %s to level %i\n", debugstr_w(name), level);
|
||||
TRACE("Resetting feature %s to level %i\n", debugstr_w(name), level);
|
||||
feature->Level = level;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -259,7 +259,7 @@ static HRESULT MPEGSplitter_process_sample(LPVOID iface, IMediaSample * pSample,
|
|||
hr = IMediaSample_GetPointer(pSample, &pbSrcStream);
|
||||
}
|
||||
|
||||
/* Flush occuring */
|
||||
/* Flush occurring */
|
||||
if (cbSrcStream == 0)
|
||||
{
|
||||
FIXME(".. Why do I need you?\n");
|
||||
|
|
|
@ -51,7 +51,7 @@ typedef HRESULT (* CLEANUPPROC) (LPVOID userdata);
|
|||
/* This function is called whenever a request for a new sample is made,
|
||||
* If you implement it (it can be NULL for default behavior), you have to
|
||||
* call IMemAllocator_GetBuffer and IMemAllocator_RequestBuffer
|
||||
* This is useful if you want to request more then 1 buffer at simultaneously
|
||||
* This is useful if you want to request more than 1 buffer at simultaneously
|
||||
* If PullPin->flushed is set, it means that all buffers queued previously are gone
|
||||
*
|
||||
* This will also cause the Sample Proc to be called with empty buffers to indicate
|
||||
|
|
|
@ -87,7 +87,7 @@ static HRESULT WAVEParser_Sample(LPVOID iface, IMediaSample * pSample, DWORD_PTR
|
|||
|
||||
cbSrcStream = IMediaSample_GetActualDataLength(pSample);
|
||||
|
||||
/* Flush occuring */
|
||||
/* Flush occurring */
|
||||
if (cbSrcStream == 0)
|
||||
{
|
||||
TRACE(".. Why do I need you?\n");
|
||||
|
|
|
@ -231,7 +231,7 @@ fast_mp_montgomery_reduce (mp_int * x, const mp_int * n, mp_digit rho)
|
|||
/* a = a + mu * m * b**i
|
||||
*
|
||||
* This is computed in place and on the fly. The multiplication
|
||||
* by b**i is handled by offseting which columns the results
|
||||
* by b**i is handled by offsetting which columns the results
|
||||
* are added to.
|
||||
*
|
||||
* Note the comba method normally doesn't handle carries in the
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
* This is a test program for the SHGet{Special}Folder{Path|Location} functions
|
||||
* of shell32, that get either a filesytem path or a LPITEMIDLIST (shell
|
||||
* of shell32, that get either a filesystem path or a LPITEMIDLIST (shell
|
||||
* namespace) path for a given folder (CSIDL value).
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
* This is a test program for the SHGet{Special}Folder{Path|Location} functions
|
||||
* of shell32, that get either a filesytem path or a LPITEMIDLIST (shell
|
||||
* of shell32, that get either a filesystem path or a LPITEMIDLIST (shell
|
||||
* namespace) path for a given folder (CSIDL value).
|
||||
*
|
||||
* FIXME:
|
||||
|
|
|
@ -202,7 +202,7 @@ TW_UINT16 TWAIN_OpenDS (pTW_IDENTITY pOrigin, TW_MEMREF pData)
|
|||
TRACE("DG_CONTROL/DAT_IDENTITY/MSG_OPENDS\n");
|
||||
TRACE("pIdentity is %s\n", pIdentity->ProductName);
|
||||
if (DSM_currentState != 3) {
|
||||
FIXME("seq errror\n");
|
||||
FIXME("seq error\n");
|
||||
DSM_twCC = TWCC_SEQERROR;
|
||||
return TWRC_FAILURE;
|
||||
}
|
||||
|
|
|
@ -2538,7 +2538,7 @@ static void tex_bumpenvmat(DWORD state, IWineD3DStateBlockImpl *stateblock, Wine
|
|||
} else if(GL_SUPPORT(NV_TEXTURE_SHADER2)) {
|
||||
/* Direct3D sets the matrix in the stage reading the perturbation map. The result is used to
|
||||
* offset the destination stage(always stage + 1 in d3d). In GL_NV_texture_shader, the bump
|
||||
* map offseting is done in the stage reading the bump mapped texture, and the perturbation
|
||||
* map offsetting is done in the stage reading the bump mapped texture, and the perturbation
|
||||
* map is read from a specified source stage(always stage - 1 for d3d). Thus set the matrix
|
||||
* for stage + 1. Keep the nvrc tex unit mapping in mind too
|
||||
*/
|
||||
|
|
|
@ -183,7 +183,7 @@ static HRESULT WINAPI IWineD3DSwapChainImpl_Present(IWineD3DSwapChain *iface, CO
|
|||
|
||||
if (pSourceRect || pDestRect) FIXME("Unhandled present options %p/%p\n", pSourceRect, pDestRect);
|
||||
/* TODO: If only source rect or dest rect are supplied then clip the window to match */
|
||||
TRACE("preseting HDC %p\n", This->context[0]->hdc);
|
||||
TRACE("presetting HDC %p\n", This->context[0]->hdc);
|
||||
|
||||
/* Don't call checkGLcall, as glGetError is not applicable here */
|
||||
if (hDestWindowOverride && This->win_handle != hDestWindowOverride) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* -*- tab-width: 8; c-basic-offset: 4 -*- */
|
||||
|
||||
/*
|
||||
* MMSYTEM low level drivers handling functions
|
||||
* MMSYSTEM low level drivers handling functions
|
||||
*
|
||||
* Copyright 1999 Eric Pouech
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* -*- tab-width: 8; c-basic-offset: 4 -*- */
|
||||
|
||||
/*
|
||||
* MMSYTEM functions
|
||||
* MMSYSTEM functions
|
||||
*
|
||||
* Copyright 1993 Martin Ayotte
|
||||
* 1998-2003 Eric Pouech
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* -*- tab-width: 8; c-basic-offset: 4 -*- */
|
||||
|
||||
/*
|
||||
* MMSYTEM functions
|
||||
* MMSYSTEM functions
|
||||
*
|
||||
* Copyright 1993 Martin Ayotte
|
||||
* 1998-2002 Eric Pouech
|
||||
|
|
|
@ -1592,7 +1592,7 @@ static void set_type(var_t *v, decl_spec_t *decl_spec, const declarator_t *decl,
|
|||
}
|
||||
}
|
||||
|
||||
/* v->type is currently pointing the the type on the left-side of the
|
||||
/* v->type is currently pointing to the type on the left-side of the
|
||||
* declaration, so we need to fix this up so that it is the return type of the
|
||||
* function and make v->type point to the function side of the declaration */
|
||||
if (func_type)
|
||||
|
|
Loading…
Reference in New Issue