Define BS_TYPEMASK for the compilers which don't have it.

Fixes compilation with MinGW after wxMSWOwnerDrawnButton introduction.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-05-06 11:44:07 +00:00
parent a0f10ec1d6
commit dd59bdf40b

View File

@ -50,6 +50,11 @@
#include "wx/msw/uxtheme.h"
#include "wx/msw/dc.h" // for wxDCTemp
// Missing from MinGW 4.8 SDK headers.
#ifndef BS_TYPEMASK
#define BS_TYPEMASK 0xf
#endif
// ----------------------------------------------------------------------------
// wxWin macros
// ----------------------------------------------------------------------------