mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
[RICHED20] EM_SETSEL should not return 0. By Christoph von Wittich. Already accepted upstream.
svn path=/trunk/; revision=67074
This commit is contained in:
parent
d0713751e1
commit
be34509dea
1 changed files with 1 additions and 2 deletions
|
@ -3304,8 +3304,7 @@ LRESULT ME_HandleMessage(ME_TextEditor *editor, UINT msg, WPARAM wParam,
|
|||
}
|
||||
case EM_SETSEL:
|
||||
{
|
||||
handle_EM_EXSETSEL( editor, wParam, lParam );
|
||||
return 0;
|
||||
return handle_EM_EXSETSEL( editor, wParam, lParam );
|
||||
}
|
||||
case EM_SETSCROLLPOS:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue