wxNotebookSizer is gone now

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38614 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-04-07 19:24:39 +00:00
parent f5158fa61f
commit a2234452a7

View File

@ -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):