explorer: Add a fixme to show when applications are trying to show a balloon tip in the taskbar notification area.
This commit is contained in:
parent
0d44f6f070
commit
e301d17211
|
@ -212,6 +212,10 @@ static void modify_icon(NOTIFYICONDATAW *nid, BOOL modify_tooltip)
|
|||
{
|
||||
set_tooltip(icon, nid->szTip, modify_tooltip);
|
||||
}
|
||||
if (nid->uFlags & NIF_INFO && nid->cbSize >= NOTIFYICONDATAA_V2_SIZE)
|
||||
{
|
||||
WINE_FIXME("balloon tip title %s, message %s\n", wine_dbgstr_w(nid->szInfoTitle), wine_dbgstr_w(nid->szInfo));
|
||||
}
|
||||
}
|
||||
|
||||
static void add_icon(NOTIFYICONDATAW *nid)
|
||||
|
|
Loading…
Reference in New Issue