summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/ae/aesupport.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-08-15 14:31:13 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-08-15 14:31:13 (GMT)
commitf69633e4a1110a55c6801b2529b7333b6098a690 (patch)
tree3053abd72c470c67d040b3c1be95caf04c758526 /Mac/Modules/ae/aesupport.py
parent61000333bfae0f835e56b8b1b4a8d2dc3863f78f (diff)
downloadcpython-f69633e4a1110a55c6801b2529b7333b6098a690.zip
cpython-f69633e4a1110a55c6801b2529b7333b6098a690.tar.gz
cpython-f69633e4a1110a55c6801b2529b7333b6098a690.tar.bz2
Made AEDesc_{New,Convert} global
Diffstat (limited to 'Mac/Modules/ae/aesupport.py')
-rw-r--r--Mac/Modules/ae/aesupport.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Modules/ae/aesupport.py b/Mac/Modules/ae/aesupport.py
index 707e956..ee6ee7a 100644
--- a/Mac/Modules/ae/aesupport.py
+++ b/Mac/Modules/ae/aesupport.py
@@ -162,10 +162,10 @@ initstuff = initstuff + """
module = MacModule('AE', 'AE', includestuff, finalstuff, initstuff)
-class AEDescDefiniton(ObjectDefinition):
+class AEDescDefinition(GlobalObjectDefinition):
def __init__(self, name, prefix = None, itselftype = None):
- ObjectDefinition.__init__(self, name, prefix or name, itselftype or name)
+ GlobalObjectDefinition.__init__(self, name, prefix or name, itselftype or name)
self.argref = "*"
def outputFreeIt(self, name):
@@ -192,7 +192,7 @@ if (strcmp(name, "__members__") == 0)
""")
-aedescobject = AEDescDefiniton('AEDesc')
+aedescobject = AEDescDefinition('AEDesc')
module.addobject(aedescobject)
functions = []