Fixed very nasty null-dereferencing bug in DisposeControl/destroy

object.
This commit is contained in:
Jack Jansen 1996-10-01 10:46:46 +00:00
parent cc778ebd62
commit cfb60ee1e8
4 changed files with 42 additions and 35 deletions

View file

@ -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',
]