summaryrefslogtreecommitdiffstats
path: root/Python/mactoolboxglue.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-03-02 23:16:50 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-03-02 23:16:50 (GMT)
commitad5e76a8fbe3f638ce1946f99d0b7e62dfb7f7a9 (patch)
tree648b0d5553e6dac487fcbfacdfa561b9cf6b9806 /Python/mactoolboxglue.c
parentd79284843ab9b23b922274f066ea13e88825faad (diff)
downloadcpython-ad5e76a8fbe3f638ce1946f99d0b7e62dfb7f7a9.zip
cpython-ad5e76a8fbe3f638ce1946f99d0b7e62dfb7f7a9.tar.gz
cpython-ad5e76a8fbe3f638ce1946f99d0b7e62dfb7f7a9.tar.bz2
Use Carbon.File for FSSpec and FSRef conversion, not macfs.
Diffstat (limited to 'Python/mactoolboxglue.c')
-rw-r--r--Python/mactoolboxglue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/mactoolboxglue.c b/Python/mactoolboxglue.c
index 16ed3b5..25b6514 100644
--- a/Python/mactoolboxglue.c
+++ b/Python/mactoolboxglue.c
@@ -528,10 +528,10 @@ int routinename(PyObject *pyobj, object *cobj) { \
return (*PyMacGluePtr_##routinename)(pyobj, cobj); \
}
-GLUE_NEW(FSSpec *, PyMac_BuildFSSpec, "macfs")
-GLUE_CONVERT(FSSpec, PyMac_GetFSSpec, "macfs")
-GLUE_NEW(FSRef *, PyMac_BuildFSRef, "macfs")
-GLUE_CONVERT(FSRef, PyMac_GetFSRef, "macfs")
+GLUE_NEW(FSSpec *, PyMac_BuildFSSpec, "Carbon.File")
+GLUE_CONVERT(FSSpec, PyMac_GetFSSpec, "Carbon.File")
+GLUE_NEW(FSRef *, PyMac_BuildFSRef, "Carbon.File")
+GLUE_CONVERT(FSRef, PyMac_GetFSRef, "Carbon.File")
GLUE_NEW(AppleEvent *, AEDesc_New, "Carbon.AE") /* XXXX Why by address? */
GLUE_NEW(AppleEvent *, AEDesc_NewBorrowed, "Carbon.AE")