From: Just van Rossum Date: Wed, 31 Oct 2001 12:55:07 +0000 (+0000) Subject: call the correct base method (found due to better inheritance checking in 2.2) X-Git-Tag: v2.2.1c1~935 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05a56b87bb828ddd0d097408b93ed0d8bbe0628e;p=thirdparty%2FPython%2Fcpython.git call the correct base method (found due to better inheritance checking in 2.2) --- diff --git a/Mac/Tools/IDE/Wbase.py b/Mac/Tools/IDE/Wbase.py index 8e012def97fc..764c131c278b 100644 --- a/Mac/Tools/IDE/Wbase.py +++ b/Mac/Tools/IDE/Wbase.py @@ -455,7 +455,7 @@ class HorizontalPanes(Widget): """panesizes should be a tuple of numbers. The length of the tuple is the number of panes, the items in the tuple are the relative sizes of these panes; these numbers should add up to 1 (the total size of all panes).""" - ClickableWidget.__init__(self, possize) + Widget.__init__(self, possize) self._panesizes = panesizes self._gutter = gutter self._enabled = 1