From: Robin Dunn Date: Fri, 7 Apr 2006 19:24:39 +0000 (+0000) Subject: wxNotebookSizer is gone now X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a2234452a7af149ed9e93aae537eb7a4a6ad356f wxNotebookSizer is gone now git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38614 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/tools/XRCed/tree.py b/wxPython/wx/tools/XRCed/tree.py index de22265b1a..91cf9eb7e1 100644 --- a/wxPython/wx/tools/XRCed/tree.py +++ b/wxPython/wx/tools/XRCed/tree.py @@ -677,9 +677,6 @@ class XML_Tree(wxTreeCtrl): if child.IsWindow(): child = child.GetWindow() elif child.IsSizer(): child = child.GetSizer() - # Test for notebook sizers (deprecated) - if isinstance(child, wxNotebookSizer): - child = child.GetNotebook() return child def OnSelChanged(self, evt):