* src/gramps.glade: widen the ChildSelect window

* src/SelectPerson.py: sort people before adding to list
* src/SelectChild.py: sort people before adding to list
* src/ChooseParents.py: sort people before adding to list
* src/AddSpouse.py: sort people before adding to list

* src/ListModel.py: sorting improvements
* src/PlaceView.py: use ListModel
* src/RelLib.py: sort places by name


svn: r2272
This commit is contained in:
Don Allingham
2003-10-21 03:42:55 +00:00
parent 329a660098
commit 5282f103b1
5 changed files with 6 additions and 6 deletions

View File

@ -161,7 +161,7 @@ class ChooseParents:
dday = self.person.getDeath().getDateObj()
person_list = []
for key in self.db.getPersonKeys():
for key in self.db.sortPersonKeys():
if pkey == key:
continue
@ -235,7 +235,7 @@ class ChooseParents:
dday = self.person.getDeath().getDateObj()
person_list = []
for key in self.db.getPersonKeys():
for key in self.db.sortPersonKeys():
if pkey == key:
continue