diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt index ad3b949067..05f9b1bb3a 100644 --- a/wxPython/docs/CHANGES.txt +++ b/wxPython/docs/CHANGES.txt @@ -20,6 +20,12 @@ The following deprecated items have been removed: * wx.FontMapper SetConfig method + * wx.html.HtmlSearchStatus.GetContentsItem method + + * wx.html.HtmlHelpData.GetContents, GetContentsCnt, GetIndex, and + GetIndexCnt methods + + wx.EventLoop is now implemented for wxMac. Added wxPython wrappers for the new wx.Treebook and wx.Toolbook @@ -84,7 +90,6 @@ affected by this are: - 2.6.3.0 ------- diff --git a/wxPython/src/_toplvl.i b/wxPython/src/_toplvl.i index 2c977606bb..3c27d1b5af 100644 --- a/wxPython/src/_toplvl.i +++ b/wxPython/src/_toplvl.i @@ -144,6 +144,11 @@ public: bool MacGetMetalAppearance() const { /*wxPyRaiseNotImplemented();*/ return false; } } #endif + + DocDeclStr( + void , CenterOnScreen(int dir = wxBOTH), + "Center the window on screen", ""); + %pythoncode { CentreOnScreen = CenterOnScreen } };