summaryrefslogtreecommitdiffstats
path: root/Mac/scripts
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-01-23 14:58:20 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-01-23 14:58:20 (GMT)
commit73023404369dca5216fc81e1fa21d19a03498a3f (patch)
tree3c80b0560c8cc0e01a049ab8515a2ed62a69ca41 /Mac/scripts
parent43bb2a4f44bb936cf4d950ee23ccd248276f4b07 (diff)
downloadcpython-73023404369dca5216fc81e1fa21d19a03498a3f.zip
cpython-73023404369dca5216fc81e1fa21d19a03498a3f.tar.gz
cpython-73023404369dca5216fc81e1fa21d19a03498a3f.tar.bz2
Sigh... First test before committing. InvalWindowRect and friends are window object methods. Fixed.
Diffstat (limited to 'Mac/scripts')
-rw-r--r--Mac/scripts/MkDistr_ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/scripts/MkDistr_ui.py b/Mac/scripts/MkDistr_ui.py
index 6d2f2c2..88c87f9 100644
--- a/Mac/scripts/MkDistr_ui.py
+++ b/Mac/scripts/MkDistr_ui.py
@@ -115,7 +115,7 @@ class ListWindow(DialogWindow):
self.list.LSetCell(contents[i], (0, i))
self.list.LSetDrawingMode(1)
##self.list.LUpdate(self.wid.GetWindowPort().visRgn)
- Win.InvalWindowRect(self.listrect)
+ self.wid.InvalWindowRect(self.listrect)
def additem(self, item):
where = self.list.LAddRow(1, 0)