Sync to Wine-0_9_4:

Dmitry Timoshkov <[email protected]>
- comctl32: Add a test for the initial tooltip window style settings,
  make it pass under Wine.
Eric Pouech <[email protected]>
- comctl32: Fixed (harmless) typo.

svn path=/trunk/; revision=20345
This commit is contained in:
Gé van Geldorp
2005-12-26 22:56:31 +00:00
parent a7c00fd10a
commit 5fccaf46f0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2400,7 +2400,7 @@ TOOLTIPS_NCCreate (HWND hwnd, WPARAM wParam, LPARAM lParam)
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
+1 -1
View File
@@ -565,7 +565,7 @@ TREEVIEW_SendTreeviewNotify(TREEVIEW_INFO *infoPtr, UINT code, UINT action,
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);