From: Mattia Barbon <mbarbon@cpan.org>
Date: Sat, 27 Sep 2003 13:33:45 +0000 (+0000)
Subject:   Updated changes.txt.
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/080a7b206ca2e646775200c9e57b8081bc31c561

  Updated changes.txt.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23964 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/docs/changes.txt b/docs/changes.txt
index 49648b7829..c08cfa022a 100644
--- a/docs/changes.txt
+++ b/docs/changes.txt
@@ -24,6 +24,8 @@ INCOMPATIBLE CHANGES SINCE 2.4.x
 - also, OnExit() is not called if OnInit() fails
 - wxTheApp can't be assigned to any longer, use wxApp::SetInstance() instead
 - wxFileType::GetIcon() returns wxIconLocation, not wxIcon
+- wxColourDatabase doesn't derive from wxList anymore: use AddColour to add
+  new colours
 - wxWindow::Clear() is now called ClearBackground()
 - pointer returned by wxFont::GetNativeFontInfo() must not be deleted now
 
@@ -49,7 +51,7 @@ versions, please update your code to not use them.
 - wxTreeItemId conversion to long is deprecated and shouldn't be used
 - [MSW only] wxWindow::GetUseCtl3D(), GetTransparentBackground() and
              SetTransparent() as well as wxNO_3D and wxUSER_COLOURS styles
-
+- wxList keyed interface: use wxHashMap instead
 
 OTHER CHANGES
 =============
@@ -119,6 +121,13 @@ All:
 - wxDataStreams can read/write many elements at once (Mickael Gilabert)
 - added wxRecursionGuard class
 - added wxThreadHelper class (Daniel Howard)
+- Added STL support (--enable-stl for configure, wxUSE_STL in setup.h).
+  When enabled, wxString will derive from std::string, wxArray from,
+  std::vector, wxList from std::list. In addition wxHashTable will be
+  implemented in terms of wxHashMap.
+- Added wxList::compatibility_iterator. Can be used like wxNode* (except
+  it can't be delete()d). It permits writing code which will work
+  both with wxUSE_STL==1 and wxUSE_STL==0.
 
 wxBase: