From c9b1e90cc82eea1f89e2e78676013823ca7e450c Mon Sep 17 00:00:00 2001
From: Jack Jansen <jack.jansen@cwi.nl>
Date: Fri, 24 Dec 1999 13:39:23 +0000
Subject: [PATCH] Modified for appearance.

---
 Mac/scripts/fullbuild.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py
index 0558a2e7ac..a6ec263899 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]:
-- 
2.40.0