2004-11-05 Tim Waugh <twaugh@redhat.com>

* src/StartupDialog.py: Fixed typo (gtk.quit -> gtk.main_quit).


svn: r3705
This commit is contained in:
Tim Waugh 2004-11-05 11:11:51 +00:00
parent a50cf96de5
commit 98efd5e5e1
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2004-11-05 Tim Waugh <twaugh@redhat.com>
* 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 <dallingham@users.sourceforge.net>
* src/gramps_main.py (Gramps.redraw_histmenu): use GRAMPS
id instead of internal ID for history menu

View File

@ -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):