Module: wine Branch: refs/heads/master Commit: 43a23b00a785cbb580a8e119adfc6e09b6fea203 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=43a23b00a785cbb580a8e119...
Author: Matt Finnicum mattfinn@gmail.com Date: Tue Aug 8 16:08:43 2006 -0400
wordpad: Request WS_VSCROLL now that riched20 supports it.
---
programs/wordpad/wordpad.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/wordpad/wordpad.c b/programs/wordpad/wordpad.c index 0abe457..7ca54e6 100644 --- a/programs/wordpad/wordpad.c +++ b/programs/wordpad/wordpad.c @@ -133,7 +133,7 @@ static LRESULT OnCreate( HWND hWnd, WPAR assert(hDLL);
hEditorWnd = CreateWindowExW(WS_EX_CLIENTEDGE, wszRichEditClass, NULL, - WS_CHILD|WS_VISIBLE|ES_MULTILINE|ES_AUTOVSCROLL|ES_WANTRETURN, + WS_CHILD|WS_VISIBLE|ES_MULTILINE|ES_AUTOVSCROLL|ES_WANTRETURN|WS_VSCROLL, 0, 0, 1000, 100, hWnd, (HMENU)IDC_EDITOR, hInstance, NULL); if (!hEditorWnd) {