Replaced MacOS.EnableAppSwitch with MacOS.SchedParams

This commit is contained in:
Jack Jansen 1997-06-12 10:51:18 +00:00
parent d3b06a871f
commit 3368cb7763
2 changed files with 5 additions and 5 deletions

View file

@ -213,7 +213,7 @@ def test():
"So far, so good!", "Keep on truckin'" )
bar = ProgressBar("Progress, progress...", 100)
try:
appsw = MacOS.EnableAppswitch(0)
appsw = MacOS.SchedParams(1, 0)
for i in range(100):
bar.set(i)
time.sleep(0.1)
@ -223,7 +223,7 @@ def test():
time.sleep(0.3) # give'em a chance to see the done.
finally:
del bar
MacOS.EnableAppswitch(appsw)
apply(MacOS.SchedParams, appsw)