4.43 beta

This commit is contained in:
Igor Pavlov
2006-09-15 00:00:00 +00:00
committed by Kornel Lesiński
parent 0ec42ff829
commit 804edc5756
391 changed files with 9725 additions and 3168 deletions

View File

@@ -351,7 +351,7 @@ void CSystemPage::UpdateDatabase()
LPARAM param;
if (!_listViewExt.GetItemParam(i, param))
return;
CExtInfoBig &extInfo = _extDatabase.ExtBigItems[param];
CExtInfoBig &extInfo = _extDatabase.ExtBigItems[(int)param];
extInfo.Associated = _listViewExt.GetCheckState(i);
}
@@ -376,7 +376,7 @@ int CSystemPage::GetSelectedExtIndex()
LPARAM param;
if (!_listViewExt.GetItemParam(selectedIndex, param))
return -1;
return param;
return (int)param;
}