Compilation fix for VC6 after r70151.

VC6 standard SDK didn't define WM_UNINITMENUPOPUP, so define it for it.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70155 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2011-12-28 17:32:32 +00:00
parent 0d68cd1359
commit abb8764e32

View File

@ -57,6 +57,12 @@
#include "wx/univ/colschem.h"
#endif // __WXUNIVERSAL__
// FIXME-VC6: Only VC6 doesn't have this in its standard headers so this
// could be removed once support for it is dropped.
#ifndef WM_UNINITMENUPOPUP
#define WM_UNINITMENUPOPUP 0x0125
#endif
// ----------------------------------------------------------------------------
// globals
// ----------------------------------------------------------------------------