Hide forms before discarding them.

This commit is contained in:
Guido van Rossum 1991-12-16 13:06:13 +00:00
parent a317365eb2
commit 75f8968ee7
1 changed files with 1 additions and 0 deletions

View File

@ -1831,6 +1831,7 @@ form_dealloc(f)
formobject *f;
{
releaseobjects(f->ob_form);
fl_hide_form(f->ob_form);
fl_free_form(f->ob_form);
DEL(f);
}