Module: wine Branch: master Commit: add180dde0201d09b64a9d5a6c878ba0a2bb756e URL: http://source.winehq.org/git/wine.git/?a=commit;h=add180dde0201d09b64a9d5a6c...
Author: Dylan Smith dylan.ah.smith@gmail.com Date: Thu Jun 26 16:17:38 2008 -0400
riched32: Added class style to process double click events.
---
dlls/riched32/richedit.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/riched32/richedit.c b/dlls/riched32/richedit.c index d13de2f..2640f8d 100644 --- a/dlls/riched32/richedit.c +++ b/dlls/riched32/richedit.c @@ -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;