From 82d78139bf4ea0af588aba88c11b2c51993308f6 Mon Sep 17 00:00:00 2001 From: "U-i7\\gimy" Date: Thu, 27 Aug 2009 22:22:37 +0900 Subject: [PATCH] fix problem that baloon help doesn't appear on Windows XP --- mayu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayu.cpp b/mayu.cpp index 8b84446..1fe058e 100644 --- a/mayu.cpp +++ b/mayu.cpp @@ -1081,7 +1081,7 @@ public: tstring tip = loadString(IDS_mayu); tcslcpy(m_ni.szTip, tip.c_str(), NUMBER_OF(m_ni.szTip)); if (m_canUseTasktrayBaloon) { - m_ni.cbSize = sizeof(m_ni); + m_ni.cbSize = NOTIFYICONDATA_V3_SIZE; m_ni.uFlags |= NIF_INFO; } else m_ni.cbSize = NOTIFYICONDATA_V1_SIZE; -- 2.11.0