]> git.saurik.com Git - wxWidgets.git/commit
Fix wxTaskBarIcon to work under all Windows versions.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 4 Apr 2010 13:19:58 +0000 (13:19 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 4 Apr 2010 13:19:58 +0000 (13:19 +0000)
commit63d690d7c578eb7b0b102c1703e04eb0310f9d8c
tree42623c1338d853f18aa817e2653aacc439466bdf
parent961f4d0ce6fb0478c2850d2da37e072d8636639a
Fix wxTaskBarIcon to work under all Windows versions.

When the code was compiled using a new SDK, creating wxTaskBarIcon failed
under older Windows systems because of a too big NOTIFYICONDATA size specified
by the program.

Fix this by using the fixed NOTIFYICONDATA_V2_SIZE to get old version of the
struct which nevertheless contains everything we need and even fall back to
NOTIFYICONDATA_V1_SIZE for Win9x if needed.

Closes #11886.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63849 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
docs/changes.txt
src/msw/taskbar.cpp