Ignore:
Timestamp:
Nov 5, 1999, 2:01:33 PM (26 years ago)
Author:
achimha
Message:

source code cleanup, remove warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/tab.c

    r1565 r1615  
    1 /* $Id: tab.c,v 1.16 1999-11-02 21:44:03 achimha Exp $ */
     1/* $Id: tab.c,v 1.17 1999-11-05 13:01:33 achimha Exp $ */
    22/*
    33 * Tab control
     
    396396  pt.y = (INT)HIWORD(lParam);
    397397 
    398   newItem=TAB_InternalHitTest (hwnd, infoPtr,pt,&dummy);
     398  newItem = TAB_InternalHitTest (hwnd, infoPtr, pt, (unsigned int*)&dummy);
    399399 
    400   TRACE("On Tab, item %d\n", newItem);
     400//  TRACE("On Tab, item %d\n", newItem);
    401401   
    402402  if ( (newItem!=-1) &&
     
    14971497   if (len>wineItem->cchTextMax)
    14981498     wineItem->pszText= COMCTL32_ReAlloc (wineItem->pszText, len+1);
    1499    lstrcpyA (wineItem->pszText, tabItem->pszText);
     1499   lstrcpyA ((unsigned char*)wineItem->pszText, tabItem->pszText);
    15001500  }
    15011501
Note: See TracChangeset for help on using the changeset viewer.