From: Jack Jansen Date: Sun, 2 Mar 2003 23:16:50 +0000 (+0000) Subject: Use Carbon.File for FSSpec and FSRef conversion, not macfs. X-Git-Tag: v2.3c1~1617 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ad5e76a8fbe3f638ce1946f99d0b7e62dfb7f7a9;p=thirdparty%2FPython%2Fcpython.git Use Carbon.File for FSSpec and FSRef conversion, not macfs. --- diff --git a/Python/mactoolboxglue.c b/Python/mactoolboxglue.c index 16ed3b5a1128..25b6514a9cf1 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")