--- trunk/reactos/lib/comctl32/tooltips.c 2005-12-26 22:51:29 UTC (rev 20344)
+++ trunk/reactos/lib/comctl32/tooltips.c 2005-12-26 22:56:31 UTC (rev 20345)
@@ -2400,7 +2400,7 @@
DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
DWORD dwExStyle = GetWindowLongW (hwnd, GWL_EXSTYLE);
- dwStyle &= 0x0000FFFF;
+ dwStyle &= ~(WS_CHILD | /*WS_MAXIMIZE |*/ WS_BORDER | WS_DLGFRAME);
dwStyle |= (WS_POPUP | WS_BORDER | WS_CLIPSIBLINGS);
/* WS_BORDER only draws a border round the window rect, not the
--- trunk/reactos/lib/comctl32/treeview.c 2005-12-26 22:51:29 UTC (rev 20344)
+++ trunk/reactos/lib/comctl32/treeview.c 2005-12-26 22:56:31 UTC (rev 20345)
@@ -565,7 +565,7 @@
TRACE("code:%d action:%x olditem:%p newitem:%p\n",
code, action, oldItem, newItem);
- ZeroMemory(&nmhdr, sizeof(NMTREEVIEWA));
+ ZeroMemory(&nmhdr, sizeof(NMTREEVIEWW));
nmhdr.hdr.hwndFrom = hwnd;
nmhdr.hdr.idFrom = GetWindowLongPtrW(hwnd, GWLP_ID);