Alexandre Julliard : shell32: Forward font messages to the listview window.

Alexandre Julliard julliard at winehq.org
Wed May 29 14:47:33 CDT 2013


Module: wine
Branch: master
Commit: ba486ca1b4abe8f81f81527647f90f85f91f1336
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ba486ca1b4abe8f81f81527647f90f85f91f1336

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed May 29 17:59:43 2013 +0200

shell32: Forward font messages to the listview window.

---

 dlls/shell32/shlview.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/shell32/shlview.c b/dlls/shell32/shlview.c
index 7738694..2cdd160 100644
--- a/dlls/shell32/shlview.c
+++ b/dlls/shell32/shlview.c
@@ -1717,6 +1717,8 @@ static LRESULT CALLBACK ShellView_WndProc(HWND hWnd, UINT uMessage, WPARAM wPara
 				break;
 
 	  case WM_GETDLGCODE:   return SendMessageW(pThis->hWndList, uMessage, 0, 0);
+          case WM_SETFONT:      return SendMessageW(pThis->hWndList, WM_SETFONT, wParam, lParam);
+          case WM_GETFONT:      return SendMessageW(pThis->hWndList, WM_GETFONT, wParam, lParam);
 
 	  case WM_DESTROY:	
 	  			RevokeDragDrop(pThis->hWnd);




More information about the wine-cvs mailing list