diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 9edd15566..9e4d88c09 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,10 @@ +2004-11-05 Tim Waugh + * src/StartupDialog.py: Fixed typo (gtk.quit -> gtk.main_quit). + + * src/plugins/Ancestors.py: Fixed "relationship"/"marriage" + confusion when the relationship type is "Married" but there is no + marriage event (i.e. no other details are known). + 2004-11-02 Don Allingham * src/gramps_main.py (Gramps.redraw_histmenu): use GRAMPS id instead of internal ID for history menu diff --git a/gramps2/src/StartupDialog.py b/gramps2/src/StartupDialog.py index 068563df2..866f9cc00 100644 --- a/gramps2/src/StartupDialog.py +++ b/gramps2/src/StartupDialog.py @@ -57,7 +57,7 @@ class StartupDialog: d.add(self.build_page_last()) d.connect('cancel',self.close) - self.w.connect("delete_event", gtk.quit) + self.w.connect("delete_event", gtk.main_quit) self.w.show_all() def close(self,obj):