Rob Shearman : explorer: Add a fixme to show when applications are trying to show a balloon tip in the taskbar notification area .

Alexandre Julliard julliard at winehq.org
Tue Nov 20 10:54:50 CST 2007


Module: wine
Branch: master
Commit: e301d172112e9ce854f2060e84bec6351577bb37
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e301d172112e9ce854f2060e84bec6351577bb37

Author: Rob Shearman <rob at codeweavers.com>
Date:   Mon Nov 19 15:32:12 2007 +0000

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 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/programs/explorer/systray.c b/programs/explorer/systray.c
index ca8a34b..a5535ff 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)




More information about the wine-cvs mailing list