fixed definition of TRUE broken by the last commit

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15325 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-05-01 16:25:23 +00:00
parent ad95fe268a
commit 015eb67ed2

View File

@ -186,10 +186,13 @@
#ifndef WX_TRUE_DEFINED
#undef TRUE
#undef FALSE
#define TRUE ((bool)1)
#define FALSE ((bool)0)
#endif
#endif
#ifndef TRUE
#define TRUE ((bool)1)
#define FALSE ((bool)0)
#endif
#else // !__cplusplus
// the definitions above don't work for C sources
#ifndef TRUE