diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html index 4cf883dfae..05bfa72824 100644 --- a/wxPython/docs/CHANGES.html +++ b/wxPython/docs/CHANGES.html @@ -11,7 +11,7 @@

Recent Changes for wxPython

-

2.5.2.2

+

2.5.2.3

wx.ADJUST_MINSIZE is now the default behaviour for window items in sizers. This means that the item's GetMinSize and/or GetBestSize will be called when calculating layout and the return value from that will diff --git a/wxPython/docs/MigrationGuide.html b/wxPython/docs/MigrationGuide.html index 9727ec6fad..90209ddcbe 100644 --- a/wxPython/docs/MigrationGuide.html +++ b/wxPython/docs/MigrationGuide.html @@ -787,7 +787,7 @@ new Navigate method in the wx.Window class to help send the event and it is used something like this:

 flags = wx.NavigationKeyEvent.IsForward
-if event.ShiftDown:
+if event.ShiftDown():
     flags = wx.NavigationKeyEvent.IsBackward
 if event.ControlDown():
     flags |= wx.NavigationKeyEvent.WinChange