* src/ChooseParents.py (close_child_windows): Pass no arguments

to child_window.close().


svn: r4651
This commit is contained in:
Alex Roitman 2005-05-21 03:26:14 +00:00
parent 03a75c899b
commit fa2db8a154
2 changed files with 4 additions and 1 deletions

View File

@ -21,6 +21,9 @@
(keep the warnings); set the note for the media references.
* example/gedcom/sample.ged: Correct object format tags.
* src/ChooseParents.py (close_child_windows): Pass no arguments
to child_window.close().
2005-05-19 Don Allingham <don@gramps-project.org>
* src/DisplayModels.py: remove place column
* src/MediaView.py: delete Place option

View File

@ -255,7 +255,7 @@ class ChooseParents:
def close_child_windows(self):
for child_window in self.child_windows.values():
child_window.close(None)
child_window.close()
self.child_windows = {}
def add_itself_to_menu(self):