Patch 702620 by Donovan Preston: Fix AE inheritance.

This commit is contained in:
Jack Jansen 2003-03-21 12:04:19 +00:00
parent 82ad32ec39
commit 7e0bc112b8
2 changed files with 10 additions and 9 deletions

View file

@ -502,11 +502,11 @@ class ComponentItem(SelectableItem):
# Derived classes *must* set the *class attribute* 'want' to some constant
# Also, dictionaries _propdict and _elemdict must be set to map property
# and element names to the correct classes
_propdict = {}
_elemdict = {}
def __init__(self, which, fr = None):
SelectableItem.__init__(self, self.want, which, fr)
self._propdict = {}
self._elemdict = {}
def __repr__(self):
if not self.fr: