summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/ctl/ctlscan.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-10-01 10:46:46 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-10-01 10:46:46 (GMT)
commitcfb60ee1e88118ca50254cf073b934a136e9f96a (patch)
tree7f70825383edcad46001fdd5c63fe9265f69a57c /Mac/Modules/ctl/ctlscan.py
parentcc778ebd62a5e256c6cf44b32f417658cce1751c (diff)
downloadcpython-cfb60ee1e88118ca50254cf073b934a136e9f96a.zip
cpython-cfb60ee1e88118ca50254cf073b934a136e9f96a.tar.gz
cpython-cfb60ee1e88118ca50254cf073b934a136e9f96a.tar.bz2
Fixed very nasty null-dereferencing bug in DisposeControl/destroy
object.
Diffstat (limited to 'Mac/Modules/ctl/ctlscan.py')
-rw-r--r--Mac/Modules/ctl/ctlscan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/ctl/ctlscan.py b/Mac/Modules/ctl/ctlscan.py
index 661cbfe..d3e185e 100644
--- a/Mac/Modules/ctl/ctlscan.py
+++ b/Mac/Modules/ctl/ctlscan.py
@@ -30,7 +30,7 @@ class MyScanner(Scanner):
def makeblacklistnames(self):
return [
- 'DisposeControl' # Implied by deletion of control object
+ 'DisposeControl', # Generated manually
'KillControls', # Implied by close of dialog
'SetCtlAction',
]