Skip to content

Commit be34509

Browse files
committed
[RICHED20] EM_SETSEL should not return 0. By Christoph von Wittich. Already accepted upstream.
svn path=/trunk/; revision=67074
1 parent d071375 commit be34509

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

reactos/dll/win32/riched20/editor.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3304,8 +3304,7 @@ LRESULT ME_HandleMessage(ME_TextEditor *editor, UINT msg, WPARAM wParam,
33043304
}
33053305
case EM_SETSEL:
33063306
{
3307-
handle_EM_EXSETSEL( editor, wParam, lParam );
3308-
return 0;
3307+
return handle_EM_EXSETSEL( editor, wParam, lParam );
33093308
}
33103309
case EM_SETSCROLLPOS:
33113310
{

0 commit comments

Comments
 (0)