From 98efd5e5e1cf371498b3fb1b984f668cd85f605a Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Fri, 5 Nov 2004 11:11:51 +0000 Subject: [PATCH] 2004-11-05 Tim Waugh * src/StartupDialog.py: Fixed typo (gtk.quit -> gtk.main_quit). svn: r3705 --- ChangeLog | 7 +++++++ src/StartupDialog.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9edd15566..9e4d88c09 100644 --- a/ChangeLog +++ b/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/src/StartupDialog.py b/src/StartupDialog.py index 068563df2..866f9cc00 100644 --- a/src/StartupDialog.py +++ b/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):