]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
reSWIGged
[wxWidgets.git] / docs / changes.txt
index 9e7684042e01ed843036b7557b7f217ba6203944..0e615bdc583184bde332941421f008af89e0a661 100644 (file)
@@ -49,6 +49,10 @@ INCOMPATIBLE CHANGES SINCE 2.4.x
   not using wxList keyed interface (the same used when wxUSE_STL == 1),
   the only incompatibility being that Next() returns a wxHashTable::Node*
   instead of a wxNode*.
+- non-const wxDC methods GetBackground(), GetBrush(), GetFont() and GetPen()
+  don't exist any more, please fix your code -- it never worked correctly
+  anyhow if you modified the objects returned by these methods so you should
+  simply switch to using const methods.
 
 wxTaskBarIcon must be explicitly destroyed now, otherwise the application
   won't exit even though there are no top level windows
@@ -99,6 +103,9 @@ All:
 - wxDynamicCast() now uses static_cast<wxObject *> internally and so using it
   with anything not deriving from wxObject will fail at compile time (instead
   of run-time) now
+- when wxUSE_STL == 1 and STL provides quasi-standard hash_map/hash_set,
+  wxHashMap/wxHashSet are just typedefs for them. This makes impossible
+  to forward declare these classes.
 
 All (GUI):
 
@@ -129,6 +136,8 @@ wxMSW:
 - wxTaskBarIcon must be explicitly destroyed now, otherwise the application
   won't exit even though there are no top level windows
 - wxFileName::GetModificationTime() works with opened files too now
+- wxDC::GetClippingBox() now works even for clipping regions created by Windows
+- fixed wxFileDataObject in Unicode build (Alex D)
 
 wxMotif:
 
@@ -148,6 +157,7 @@ wxHTML:
 
 Unix:
 - fixed priorities of mailcap entries (David Hart)
+- added "wx-config --libs=std,<extra>" syntax (i.e. support for "std")
 
 
 2.5.1