+- wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
+ have changed (to fix some unfortunate clashes), please check your code to
+ ensure that no tests for wxYES or wxNO are broken: for example, the following
+ will *NOT* work any longer:
+
+ if ( flags & wxYES_NO )
+ ... do something ...
+ if ( flags & wxYES )
+ ... do something else ...
+
+- wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
+
+- wxGridCellAttrProvider class API changed, you will need to update your code
+ if you derived any classes from it
+
+wxMSW:
+
+- build system changed: setup.h is not a static file in include/wx any more
+ but is created as part of the build process under lib/<toolkit>/wx/include
+ where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
+ the include path in your make/project files appropriately.
+