Re: comctl32: Tooltip AddTool needs to support TTTOOLINFOW_V3_SIZE
9 May
2014
9 May
'14
3:31 p.m.
Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> writes:
@@ -1037,8 +1037,9 @@ TOOLTIPS_AddToolT (TOOLTIPS_INFO *infoPtr, const TTTOOLINFOW *ti, BOOL isW) infoPtr->hwndSelf, ti->hwnd, ti->uId, (ti->uFlags & TTF_IDISHWND) ? " TTF_IDISHWND" : "");
- if (ti->cbSize >= TTTOOLINFOW_V2_SIZE && !ti->lpszText && isW) - return FALSE; + if ((ti->cbSize > TTTOOLINFOW_V2_SIZE && + ti->cbSize != TTTOOLINFOW_V3_SIZE) && !ti->lpszText && isW) + return FALSE;
This doesn't make any sense. -- Alexandre Julliard julliard(a)winehq.org
4325
Age (days ago)
4325
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard