redefined TRUE and FALSE to be of type bool

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15145 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-04-15 18:27:16 +00:00
parent d5172a588c
commit a2d541ca9c
2 changed files with 21 additions and 19 deletions

View File

@@ -28,6 +28,11 @@ wxBase:
- small change to wxStopWatch::Pause() semantics, please see the documentation
- unlikely but possible incompatibility: the definition of TRUE has changed
from "1" to "(bool)1" (and the same thing for FALSE), so the code which
could be erroneously compiled previously such as doing "return FALSE" from
a function returning a pointer would stop compiling now (but this change
is not supposed to have any effects on valid code)
All (GUI):