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:
Rob Shearman 2007-11-19 15:32:12 +00:00 committed by Alexandre Julliard
parent 0d44f6f070
commit e301d17211

View file

@ -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)