Commit in reactos/subsys/system/explorer/utility on MAIN
window.cpp+4-21.52 -> 1.53
UNICODE fix for Tooltips

reactos/subsys/system/explorer/utility
window.cpp 1.52 -> 1.53
diff -u -r1.52 -r1.53
--- window.cpp	14 Mar 2004 22:20:10 -0000	1.52
+++ window.cpp	14 Mar 2004 22:27:44 -0000	1.53
@@ -684,7 +684,8 @@
 			return TRUE;	// message has been processed
 
 		  case WM_NOTIFYFORMAT:
-			return NFR_CURRENT;
+			SetWindowLong(hwnd, DWLP_MSGRESULT, NFR_CURRENT);	// set return value NFR_CURRENT
+			return TRUE;	// message has been processed
 
 		  case WM_NCDESTROY:
 			delete pThis;
@@ -1365,7 +1366,8 @@
 			return TRUE;	// message has been processed
 
 		  case WM_NOTIFYFORMAT:
-			return NFR_CURRENT;
+			SetWindowLong(hwnd, DWLP_MSGRESULT, NFR_CURRENT);	// set return value NFR_CURRENT
+			return TRUE;	// message has been processed
 
 		  case WM_NCDESTROY:
 			delete pThis;
CVSspam 0.2.8