Module: wine Branch: stable Commit: 44e153f9d45ee434bb2727a1d9cd7502cec7fa2f URL: http://source.winehq.org/git/wine.git/?a=commit;h=44e153f9d45ee434bb2727a1d9...
Author: Huw Davies huw@codeweavers.com Date: Fri Dec 6 16:28:31 2013 +0000
wordpad: Pass the correct window to the font size list validator.
(cherry picked from commit 39538f91f5d396cf4b721086ddddb08a38bc18d1)
---
programs/wordpad/wordpad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/wordpad/wordpad.c b/programs/wordpad/wordpad.c index 8468148..1da6a27 100644 --- a/programs/wordpad/wordpad.c +++ b/programs/wordpad/wordpad.c @@ -2016,7 +2016,7 @@ static LRESULT OnNotify( HWND hWnd, LPARAM lParam) on_fontlist_modified(endEdit->szText); } else if (pHdr->hwndFrom == hwndSizeList) { - on_sizelist_modified(hwndFontList,endEdit->szText); + on_sizelist_modified(hwndSizeList,endEdit->szText); } } return 0;