comctl32: Fix the signedness of i, oldNumParts and nTipCount in STATUSBAR_SetParts.

oldstable
Rob Shearman 2008-02-22 19:17:24 +00:00 committed by Alexandre Julliard
parent e7c1d5d173
commit e145242671
1 changed files with 2 additions and 2 deletions

View File

@ -668,7 +668,7 @@ static BOOL
STATUSBAR_SetParts (STATUS_INFO *infoPtr, INT count, LPINT parts)
{
STATUSWINDOWPART *tmp;
int i, oldNumParts;
UINT i, oldNumParts;
TRACE("(%d,%p)\n", count, parts);
@ -700,7 +700,7 @@ STATUSBAR_SetParts (STATUS_INFO *infoPtr, INT count, LPINT parts)
infoPtr->parts[i].x = parts[i];
if (infoPtr->hwndToolTip) {
INT nTipCount, i;
UINT nTipCount;
TTTOOLINFOW ti;
ZeroMemory (&ti, sizeof(TTTOOLINFOW));