riched32: Added class style to process double click events.

This commit is contained in:
Dylan Smith 2008-06-26 16:17:38 -04:00 committed by Alexandre Julliard
parent 438d8e1c58
commit add180dde0
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ static BOOL RICHED32_Register(void)
WNDCLASSA wndClass;
ZeroMemory(&wndClass, sizeof(WNDCLASSA));
wndClass.style = CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
wndClass.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
wndClass.lpfnWndProc = RichEdit10ANSIWndProc;
wndClass.cbClsExtra = 0;
wndClass.cbWndExtra = 4;