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:
parent
ad95fe268a
commit
015eb67ed2
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user