mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 00:11:37 -06:00
4.43 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
0ec42ff829
commit
804edc5756
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user