Ignore:
Timestamp:
Jun 30, 1999, 5:52:19 PM (26 years ago)
Author:
cbratschi
Message:

unicode and other changes

File:
1 edited

Legend:

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

    r236 r252  
    1 /* $Id: status.c,v 1.6 1999-06-28 15:46:26 cbratschi Exp $ */
     1/* $Id: status.c,v 1.7 1999-06-30 15:52:17 cbratschi Exp $ */
    22/*
    33 * Interface code to StatusWindow widget/control
     
    441441
    442442        if (ti.lpszText)
    443             lstrcpynA ((LPSTR)lParam, ti.lpszText, MIN(HIWORD(wParam),lstrlenA(ti.lpszText)));
     443            lstrcpynA ((LPSTR)lParam, ti.lpszText, HIWORD(wParam));
    444444    }
    445445
     
    461461
    462462        if (ti.lpszText)
    463             lstrcpynW ((LPWSTR)lParam, ti.lpszText, MIN(HIWORD(wParam),lstrlenW(ti.lpszText)));
     463            lstrcpynW ((LPWSTR)lParam, ti.lpszText, HIWORD(wParam));
    464464    }
    465465
Note: See TracChangeset for help on using the changeset viewer.