fix selectperson call

svn: r6506
This commit is contained in:
Don Allingham 2006-05-01 22:14:26 +00:00
parent 6c7affe80a
commit 5791ff7fcd
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,6 @@
2006-05-01 Don Allingham <don@gramps-project.org> 2006-05-01 Don Allingham <don@gramps-project.org>
* src/Editors/_EditPersonRef.py (EditPersonRef._select_person): fix
call to SelectPerson
* src/DataViews/_PersonView.py (PersonView.define_actions): add * src/DataViews/_PersonView.py (PersonView.define_actions): add
expand and collapse all node menu entries expand and collapse all node menu entries

View File

@ -102,7 +102,7 @@ class EditPersonRef(EditSecondary):
def _select_person(self, obj): def _select_person(self, obj):
from SelectPerson import SelectPerson from SelectPerson import SelectPerson
sel = SelectPerson(self.dbstate.db, "Select Person") sel = SelectPerson(self.dbstate, self.uistate, "Select Person")
person = sel.run() person = sel.run()
if person: if person: