Commit e301d172 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

explorer: Add a fixme to show when applications are trying to show a balloon tip…

explorer: Add a fixme to show when applications are trying to show a balloon tip in the taskbar notification area.
parent 0d44f6f0
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment