diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1999-12-24 13:39:23 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1999-12-24 13:39:23 (GMT) |
commit | c9b1e90cc82eea1f89e2e78676013823ca7e450c (patch) | |
tree | 28baa83574f0b4fc3ce169dfb08add932e876399 /Mac/scripts | |
parent | b9247d37ba415fe7a21bcbc086af35971f612712 (diff) | |
download | cpython-c9b1e90cc82eea1f89e2e78676013823ca7e450c.zip cpython-c9b1e90cc82eea1f89e2e78676013823ca7e450c.tar.gz cpython-c9b1e90cc82eea1f89e2e78676013823ca7e450c.tar.bz2 |
Modified for appearance.
Diffstat (limited to 'Mac/scripts')
-rw-r--r-- | Mac/scripts/fullbuild.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py index 0558a2e..a6ec263 100644 --- a/Mac/scripts/fullbuild.py +++ b/Mac/scripts/fullbuild.py @@ -135,8 +135,8 @@ def handle_dialog(filename): continue if n < len(results): results[n] = (not results[n]) - tp, h, rect = d.GetDialogItem(n) - h.as_Control().SetControlValue(results[n]) + ctl = d.GetDialogItemAsControl(n) + ctl.SetControlValue(results[n]) rv = [] for i in range(len(results)): if results[i]: |