mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NOTEPAD] Globals.encFile: explicitly cast to ENCODING
This commit is contained in:
parent
a731be3f12
commit
6830ecb118
1 changed files with 1 additions and 1 deletions
|
@ -496,7 +496,7 @@ DIALOG_FileSaveAs_Hook(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
|
|||
{
|
||||
hCombo = GetDlgItem(hDlg, ID_ENCODING);
|
||||
if (hCombo)
|
||||
Globals.encFile = (int) SendMessage(hCombo, CB_GETCURSEL, 0, 0);
|
||||
Globals.encFile = (ENCODING) SendMessage(hCombo, CB_GETCURSEL, 0, 0);
|
||||
|
||||
hCombo = GetDlgItem(hDlg, ID_EOLN);
|
||||
if (hCombo)
|
||||
|
|
Loading…
Reference in a new issue