diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-04-08 15:27:00 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-04-08 15:27:00 (GMT) |
commit | 08c3be35c3309a81f02e14e56838148137a02caa (patch) | |
tree | f572241c86f0e87ce3f48aaca26e9d3f6f175618 /Mac/Python/macmain.c | |
parent | 85ae4a82ac4f47005ed723ef77fd01038f2a1f3a (diff) | |
download | cpython-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/macmain.c')
-rw-r--r-- | Mac/Python/macmain.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 3197388..bc02171 100644 --- a/Mac/Python/macmain.c +++ b/Mac/Python/macmain.c @@ -127,7 +127,7 @@ PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp) /* Set default values */ #define SET_OPT_ITEM(num, var) \ GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \ - SetCtlValue(handle, (short)p->var); + SetControlValue(handle, (short)p->var); SET_OPT_ITEM(OPT_INSPECT, inspect); SET_OPT_ITEM(OPT_VERBOSE, verbose); @@ -146,7 +146,7 @@ PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp) if ( item == OPT_OK ) break; if ( item == OPT_CANCEL ) { - DisposDialog(dialog); + DisposeDialog(dialog); exit(0); } if ( item == OPT_CMDLINE ) { @@ -171,7 +171,7 @@ PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp) if ( item == (num) ) { \ p->var = !p->var; \ GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \ - SetCtlValue(handle, (short)p->var); \ + SetControlValue(handle, (short)p->var); \ } OPT_ITEM(OPT_INSPECT, inspect); @@ -184,7 +184,7 @@ PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp) #undef OPT_ITEM } - DisposDialog(dialog); + DisposeDialog(dialog); } /* |