From e301d172112e9ce854f2060e84bec6351577bb37 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Mon, 19 Nov 2007 15:32:12 +0000 Subject: [PATCH] explorer: Add a fixme to show when applications are trying to show a balloon tip in the taskbar notification area. --- programs/explorer/systray.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/programs/explorer/systray.c b/programs/explorer/systray.c index ca8a34bfd3c..a5535ff38c8 100644 --- a/programs/explorer/systray.c +++ b/programs/explorer/systray.c @@ -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)