mirror of
https://github.com/bobranten/Ext4Fsd.git
synced 2025-10-30 13:28:31 -05:00
Updated Ext2Mgr to build for 64-bit
This commit is contained in:
@@ -214,7 +214,7 @@ void CTreeList::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
|
||||
rcText.bottom += 1;
|
||||
rcText.top = rcText.bottom - 6 + lf.lfHeight;
|
||||
|
||||
::DrawText(lpDrawItemStruct->hDC, lpBuffer, strlen(lpBuffer),
|
||||
::DrawText(lpDrawItemStruct->hDC, lpBuffer, (int)strlen(lpBuffer),
|
||||
&rcText, DT_LEFT) ;
|
||||
|
||||
CRect rect = lpDrawItemStruct->rcItem;
|
||||
@@ -263,7 +263,7 @@ void CTreeList::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
|
||||
lvi.cchTextMax = sizeof(lpBuffer);
|
||||
GetItem(&lvi);
|
||||
|
||||
::DrawText(lpDrawItemStruct->hDC, lpBuffer, strlen(lpBuffer),
|
||||
::DrawText(lpDrawItemStruct->hDC, lpBuffer, (int)strlen(lpBuffer),
|
||||
&rcText, uFormat) ;
|
||||
|
||||
if (nCol == 0) {
|
||||
|
||||
Reference in New Issue
Block a user