]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
Use the default stdio window for the gui tools
[wxWidgets.git] / docs / changes.txt
index 24b4bc9d33437d4981489ed8dbd2b71e44ac7543..ccfc809cdad06c0114107cfc3b802866591a7e18 100644 (file)
@@ -14,6 +14,10 @@ INCOMPATIBLE CHANGES SINCE 2.2.x
     your code without this define as it won't be default any longer in
     2.6 release.
 
+    NB: if you want to build your program with different major versions
+        of wxWindows you will probably find the wxCHECK_VERSION() macro
+        (see the documentation) useful.
+
 
 wxBase:
 
@@ -78,6 +82,10 @@ All (GUI):
         if ( flags & wxYES )
                 ... do something else ...
 
+- static wxWizard::Create() doesn't exist any more, the wizards are created
+  in the same way as all the other wxWindow objects, i.e. by directly using
+  the ctor
+
 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
 
 - wxGridCellAttrProvider class API changed, you will need to update your code