Removed local variable shadows warnings.

This commit is contained in:
Marcus Meissner 2000-08-07 04:16:43 +00:00 committed by Alexandre Julliard
parent 081ee94117
commit 64c86ffe66
4 changed files with 9 additions and 10 deletions

View File

@ -523,7 +523,7 @@ static HGLOBAL16 CURSORICON_CreateFromResource( HINSTANCE16 hInstance, HGLOBAL16
CBM_INIT, (char*)bmi + size, pInfo, DIB_RGB_COLORS ); CBM_INIT, (char*)bmi + size, pInfo, DIB_RGB_COLORS );
if( hXorBits ) if( hXorBits )
{ {
char* bits = (char *)bmi + size + char* xbits = (char *)bmi + size +
DIB_GetDIBImageBytes(bmi->bmiHeader.biWidth, DIB_GetDIBImageBytes(bmi->bmiHeader.biWidth,
bmi->bmiHeader.biHeight, bmi->bmiHeader.biHeight,
bmi->bmiHeader.biBitCount) / 2; bmi->bmiHeader.biBitCount) / 2;
@ -558,14 +558,14 @@ static HGLOBAL16 CURSORICON_CreateFromResource( HINSTANCE16 hInstance, HGLOBAL16
hOld = SelectObject(hMem, hAndBits); hOld = SelectObject(hMem, hAndBits);
res = StretchDIBits(hMem, 0, 0, width, height, 0, 0, res = StretchDIBits(hMem, 0, 0, width, height, 0, 0,
pInfo->bmiHeader.biWidth, pInfo->bmiHeader.biHeight, pInfo->bmiHeader.biWidth, pInfo->bmiHeader.biHeight,
bits, pInfo, DIB_RGB_COLORS, SRCCOPY); xbits, pInfo, DIB_RGB_COLORS, SRCCOPY);
SelectObject(hMem, hOld); SelectObject(hMem, hOld);
DeleteDC(hMem); DeleteDC(hMem);
} else res = FALSE; } else res = FALSE;
if (!res) { DeleteObject(hAndBits); hAndBits = 0; } if (!res) { DeleteObject(hAndBits); hAndBits = 0; }
} }
} else hAndBits = CreateDIBitmap( hdc, &pInfo->bmiHeader, } else hAndBits = CreateDIBitmap( hdc, &pInfo->bmiHeader,
CBM_INIT, bits, pInfo, DIB_RGB_COLORS ); CBM_INIT, xbits, pInfo, DIB_RGB_COLORS );
if( !hAndBits ) DeleteObject( hXorBits ); if( !hAndBits ) DeleteObject( hXorBits );
} }

View File

@ -398,10 +398,10 @@ HWND EVENT_Capture(HWND hwnd, INT16 ht)
if( capturePrev ) if( capturePrev )
{ {
WND* wndPtr = WIN_FindWndPtr( capturePrev ); WND* xwndPtr = WIN_FindWndPtr( capturePrev );
if( wndPtr && (wndPtr->flags & WIN_ISWIN32) ) if( xwndPtr && (xwndPtr->flags & WIN_ISWIN32) )
SendMessageA( capturePrev, WM_CAPTURECHANGED, 0L, hwnd); SendMessageA( capturePrev, WM_CAPTURECHANGED, 0L, hwnd);
WIN_ReleaseWndPtr(wndPtr); WIN_ReleaseWndPtr(xwndPtr);
} }
} }

View File

@ -35,7 +35,6 @@ static HFONT MSGBOX_OnInit(HWND hwnd, LPMSGBOXPARAMSA lpmb)
if (TWEAK_WineLook >= WIN95_LOOK) { if (TWEAK_WineLook >= WIN95_LOOK) {
NONCLIENTMETRICSA nclm; NONCLIENTMETRICSA nclm;
INT i;
nclm.cbSize = sizeof(NONCLIENTMETRICSA); nclm.cbSize = sizeof(NONCLIENTMETRICSA);
SystemParametersInfoA (SPI_GETNONCLIENTMETRICS, 0, &nclm, 0); SystemParametersInfoA (SPI_GETNONCLIENTMETRICS, 0, &nclm, 0);
hFont = CreateFontIndirectA (&nclm.lfMessageFont); hFont = CreateFontIndirectA (&nclm.lfMessageFont);

View File

@ -2662,12 +2662,12 @@ Pos: /* -----------------------------------------------------------------------
!= (SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER)) ) != (SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER)) )
{ {
/* get a previous visible region for SWP_CopyValidBits() */ /* get a previous visible region for SWP_CopyValidBits() */
DWORD flags = DCX_WINDOW; DWORD dflags = DCX_WINDOW;
if (wndPtr->dwStyle & WS_CLIPSIBLINGS) if (wndPtr->dwStyle & WS_CLIPSIBLINGS)
flags |= DCX_CLIPSIBLINGS; dflags |= DCX_CLIPSIBLINGS;
visRgn = DCE_GetVisRgn(hwnd, flags, 0, 0); visRgn = DCE_GetVisRgn(hwnd, dflags, 0, 0);
} }
} }