event ref commit

svn: r6090
This commit is contained in:
Don Allingham 2006-03-06 05:43:47 +00:00
parent 24ec6b2931
commit f5fc3e8cd6
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,5 @@
2006-03-05 Don Allingham <don@gramps-project.org>
* src/Editors/_EditEventRef.py: add vs. commit handling
* src/Editors/_EditPerson.py: handle None as person
* src/TipOfDay.py: Fix the image location
* src/Editors/_EditPerson.py: fix focus_out_event

View File

@ -202,14 +202,15 @@ class EditEventRef(EditReference):
self.source.set_place_handle(handle)
trans = self.db.transaction_begin()
self.db.commit_event(self.source,trans)
if self.source.handle:
if need_new:
self.db.add_place(place_obj,trans)
self.db.commit_event(self.source,trans)
self.db.transaction_commit(trans,_("Modify Event"))
else:
if need_new:
self.db.add_place(place_obj,trans)
self.db.add_event(self.source,trans)
self.db.transaction_commit(trans,_("Add Event"))
self.source_ref.ref = self.source.handle