mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[CONSOLE.CPL]: Addendum to r74397: Fix a cast.
svn path=/trunk/; revision=74398
This commit is contained in:
parent
34a71f27fc
commit
b6f13160b2
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ AddCodePage(
|
||||||
iItem = 0;
|
iItem = 0;
|
||||||
if (iDupItem != CB_ERR)
|
if (iDupItem != CB_ERR)
|
||||||
return;
|
return;
|
||||||
iItem = (INT)SendMessageW(hWndList, CB_INSERTSTRING, iItem, (LPARAM)CPInfo.CodePageName);
|
iItem = (UINT)SendMessageW(hWndList, CB_INSERTSTRING, iItem, (LPARAM)CPInfo.CodePageName);
|
||||||
if (iItem != CB_ERR && iItem != CB_ERRSPACE)
|
if (iItem != CB_ERR && iItem != CB_ERRSPACE)
|
||||||
iItem = SendMessageW(hWndList, CB_SETITEMDATA, iItem, CodePage);
|
iItem = SendMessageW(hWndList, CB_SETITEMDATA, iItem, CodePage);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue