mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 15:36:42 +00:00
[REACTOS] Fix warning C4146: unary minus operator applied to unsigned type, result still unsigned
This commit is contained in:
parent
64e182e429
commit
08c6d21e1f
6 changed files with 8 additions and 8 deletions
|
@ -244,8 +244,8 @@ typedef struct
|
|||
{
|
||||
FONTOBJ *pfo;
|
||||
PBMFD_FACE pface;
|
||||
ULONG xScale;
|
||||
ULONG yScale;
|
||||
LONG xScale;
|
||||
LONG yScale;
|
||||
ULONG ulAngle;
|
||||
} BMFD_FONT, *PBMFD_FONT;
|
||||
|
||||
|
|
|
@ -83,7 +83,7 @@ BmfdQueryGlyphAndBitmap(
|
|||
PGLYPHENTRY pge;
|
||||
ULONG xSrc, ySrc, cxSrc, cySrc;
|
||||
ULONG xDst, yDst, cxDst, cyDst;
|
||||
ULONG xScale, yScale;
|
||||
LONG xScale, yScale;
|
||||
ULONG ulGlyphOffset, cjDstRow, color;
|
||||
PVOID pvSrc0, pvDst0;
|
||||
|
||||
|
|
|
@ -1752,7 +1752,7 @@ static void FASTCALL MENU_DrawBitmapItem(HDC hdc, PITEM lpitem, const RECT *rect
|
|||
drawItem.itemData = lpitem->dwItemData;
|
||||
/* some applications make this assumption on the DC's origin */
|
||||
GreSetViewportOrgEx( hdc, lpitem->xItem, lpitem->yItem, &origorg);
|
||||
RECTL_vOffsetRect( &drawItem.rcItem, - lpitem->xItem, - lpitem->yItem);
|
||||
RECTL_vOffsetRect(&drawItem.rcItem, -(LONG)lpitem->xItem, -(LONG)lpitem->yItem);
|
||||
co_IntSendMessage( UserHMGetHandle(WndOwner), WM_DRAWITEM, 0, (LPARAM)&drawItem);
|
||||
GreSetViewportOrgEx( hdc, origorg.x, origorg.y, NULL);
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue