From: Robin Dunn Date: Wed, 4 May 2005 00:03:00 +0000 (+0000) Subject: use the passed in ID X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e345fb0b32bd73a7f2140a1f19c49c344b7b3d1c?ds=inline use the passed in ID git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/scrolledpanel.py b/wxPython/wx/lib/scrolledpanel.py index 851d9332fa..3b134234cf 100644 --- a/wxPython/wx/lib/scrolledpanel.py +++ b/wxPython/wx/lib/scrolledpanel.py @@ -35,7 +35,7 @@ class ScrolledPanel( wx.PyScrolledWindow ): size = wx.DefaultSize, style = wx.TAB_TRAVERSAL, name = "scrolledpanel"): - wx.PyScrolledWindow.__init__(self, parent, -1, + wx.PyScrolledWindow.__init__(self, parent, id, pos=pos, size=size, style=style, name=name) self.SetBestFittingSize(size)