Remove extra semicolons from NOTIFYICONDATA_V[12]_SIZE definitions.

These semicolons prevented the code from compiling when using old SDK which
didn't provide these symbols itself.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2010-04-06 16:23:15 +00:00
parent b2edb8f3c5
commit b11b437e8d

View File

@ -56,9 +56,9 @@
#ifndef NOTIFYICONDATA_V2_SIZE
#ifdef UNICODE
#define NOTIFYICONDATA_V2_SIZE 0x03A8;
#define NOTIFYICONDATA_V2_SIZE 0x03A8
#else
#define NOTIFYICONDATA_V2_SIZE 0x01E8;
#define NOTIFYICONDATA_V2_SIZE 0x01E8
#endif
#endif