diff options
author | Just van Rossum <just@letterror.com> | 2001-10-31 12:55:07 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2001-10-31 12:55:07 (GMT) |
commit | 05a56b87bb828ddd0d097408b93ed0d8bbe0628e (patch) | |
tree | 305fcd4b8006f37239b44911e0684f4892e992fd /Mac/Tools/IDE | |
parent | 666b1e7e2f929af06fdfd074304a727f3dc5ed12 (diff) | |
download | cpython-05a56b87bb828ddd0d097408b93ed0d8bbe0628e.zip cpython-05a56b87bb828ddd0d097408b93ed0d8bbe0628e.tar.gz cpython-05a56b87bb828ddd0d097408b93ed0d8bbe0628e.tar.bz2 |
call the correct base method (found due to better inheritance checking in 2.2)
Diffstat (limited to 'Mac/Tools/IDE')
-rw-r--r-- | Mac/Tools/IDE/Wbase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Tools/IDE/Wbase.py b/Mac/Tools/IDE/Wbase.py index 8e012de..764c131 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 |