diff --git a/ChangeLog b/ChangeLog index 1db476bb4..4b1f3c6b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2008-02-08 Raphael Ackermann + * src/Editors/_EditPrimary.py: 0001347: double gid. fix previous commit + 2008-02-09 Brian Matherly * src/ReportBase/_WebReportDialog.py: * src/ReportBase/_ReportDialog.py: diff --git a/src/Editors/_EditPrimary.py b/src/Editors/_EditPrimary.py index f7f23e781..1cd97243d 100644 --- a/src/Editors/_EditPrimary.py +++ b/src/Editors/_EditPrimary.py @@ -35,7 +35,7 @@ class EditPrimary(ManagedWindow.ManagedWindow): QR_CATEGORY = -1 def __init__(self, state, uistate, track, obj, get_from_handle, - callback=None): + get_from_gramps_id, callback=None): """Creates an edit window. Associates a person with the window.""" self.dp = DateHandler.parser @@ -49,6 +49,7 @@ class EditPrimary(ManagedWindow.ManagedWindow): self.signal_keys = [] self.ok_button = None self.get_from_handle = get_from_handle + self.get_from_gramps_id = get_from_gramps_id self.contexteventbox = None ManagedWindow.ManagedWindow.__init__(self, uistate, track, obj)