summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macglue.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-04-08 15:27:00 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-04-08 15:27:00 (GMT)
commit08c3be35c3309a81f02e14e56838148137a02caa (patch)
treef572241c86f0e87ce3f48aaca26e9d3f6f175618 /Mac/Python/macglue.c
parent85ae4a82ac4f47005ed723ef77fd01038f2a1f3a (diff)
downloadcpython-08c3be35c3309a81f02e14e56838148137a02caa.zip
cpython-08c3be35c3309a81f02e14e56838148137a02caa.tar.gz
cpython-08c3be35c3309a81f02e14e56838148137a02caa.tar.bz2
Changed the few old routine names still used to the new ones
Started working on MSL support
Diffstat (limited to 'Mac/Python/macglue.c')
-rw-r--r--Mac/Python/macglue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c
index d05009e..cc55d08 100644
--- a/Mac/Python/macglue.c
+++ b/Mac/Python/macglue.c
@@ -173,7 +173,7 @@ PyMac_FixGUSIcd()
pb.ioNamePtr= "\p";
pb.ioVRefNum= curdirfss.vRefNum;
pb.ioWDDirID= curdirfss.parID;
- if (PBHSetVol(&pb, 0) != noErr)
+ if (PBHSetVolSync(&pb) != noErr)
return;
}
@@ -540,7 +540,7 @@ PyMac_InitMenuBar()
MenuHandle applemenu;
if ( (bar=GetMenuBar()) == NULL ) return;
- if ( (applemenu=GetMHandle(SIOUX_APPLEID)) == NULL ) return;
+ if ( (applemenu=GetMenuHandle(SIOUX_APPLEID)) == NULL ) return;
SetMenuItemText(applemenu, 1, "\pAbout Python...");
}