From: Robin Dunn Date: Mon, 9 Oct 2006 02:38:38 +0000 (+0000) Subject: new changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/607afa3cd4979fe3e8c0f1b0d7340f75bd836f9c new changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41777 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt index c6d4558de4..78ed4c9b51 100644 --- a/wxPython/docs/CHANGES.txt +++ b/wxPython/docs/CHANGES.txt @@ -267,6 +267,19 @@ Renamed wx.FutureCall to wx.CallLater so it is named more like wx.CallAfter. wx.FutureCall is now an empty subclass of wx.CallLater for compatibility of older code. +Added the wx.lib.customtreectrl the from Andrea Gavana. + +Added ChangeSelection to wx.BookCtrl (the base class for wx.Notebook +and other book controls) that is the same as SetSelection but doesn't +send the change events. + +Added wx.TextCtrl.ChangeValue() which is the same as SetValue() but +doesn't send the text changed event. + +For consistency, all classes having an Ok() method now also have +IsOk(), use of the latter form is preferred although the former hasn't +been deprecated yet +