* src/gramps_main.py: dropped New Database message. After all, it should

be incredibly obvious.
* src/Utils.py: create_id to generate random internal ID
* src/RelLib.py: new internal ID support
* src/AddSpouse.py: bug fixes
* src/ChooseParents.py: bug fixes
* src/PeopleModel.py: bug fixes
* src/PeopleView.py: bug fixes
* src/FamilyView.py: bug fixes
* src/Bookmarks.py: support for new internal IDs
* src/EditPerson.py: support for new internal IDs
* src/plugins/ReadGedcom.py: handle new internal IDs


svn: r3233
This commit is contained in:
Don Allingham
2004-06-27 03:10:06 +00:00
parent 2faa14b1a7
commit 4c76be91dd
18 changed files with 247 additions and 204 deletions

View File

@@ -84,7 +84,7 @@ class Bookmarks :
"""adds a person's name to the drop down menu"""
data = self.db.person_map.get(str(person_id))
if data:
name = data[2].get_name()
name = data[3].get_name()
item = gtk.MenuItem(name)
item.connect("activate", self.callback, person_id)
item.show()
@@ -144,7 +144,7 @@ class Bookmarks :
index = 0
for person_id in self.bookmarks:
data = self.db.person_map.get(str(person_id))
name = data[2].get_name()
name = data[3].get_name()
self.namelist.append([name])
self.namelist.set_row_data(index,person_id)
index = index + 1