Changeset 4140
- Timestamp:
- 06/17/08 05:25:14 (5 months ago)
- Files:
-
- trunk/ide/ClassDesigner.py (modified) (1 diff)
- trunk/ide/ClassDesignerComponents.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ide/ClassDesigner.py
r4125 r4140 572 572 ret = False 573 573 atts = clsd.get("attributes", {}) 574 szinf = atts.get("sizerInfo", " {}")575 if szinf != " {}":574 szinf = atts.get("sizerInfo", "") 575 if szinf != "": 576 576 ret = True 577 577 else: trunk/ide/ClassDesignerComponents.py
r4131 r4140 61 61 try: 62 62 myID = self.classID.split("-")[1] 63 except IndexError:63 except (AttributeError, IndexError): 64 64 myID = abs(self.__hash__()) 65 65 if classID is None:
