mirror of
https://github.com/reactos/wine.git
synced 2025-03-03 18:28:58 +00:00
Fixed EM_SETEVENTMASK RichEdit message handler to return old event
mask.
This commit is contained in:
parent
f919b72769
commit
9527739112
@ -1228,8 +1228,12 @@ LRESULT WINAPI RichEditANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lP
|
||||
return 0;
|
||||
}
|
||||
case EM_SETEVENTMASK:
|
||||
{
|
||||
DWORD nOldMask = editor->nEventMask;
|
||||
|
||||
editor->nEventMask = lParam;
|
||||
return 0;
|
||||
return nOldMask;
|
||||
}
|
||||
case EM_GETEVENTMASK:
|
||||
return editor->nEventMask;
|
||||
case EM_SETCHARFORMAT:
|
||||
|
Loading…
x
Reference in New Issue
Block a user