update
svn: r1775
This commit is contained in:
parent
2f5bcae451
commit
c5a32dfae8
@ -2,6 +2,13 @@
|
||||
* src/SubstKeywords.py: Fixed typo on getName
|
||||
* src/plugins/WriteGedcom.py: Allow iso-8859-1 (ANSI) encoding
|
||||
* src/plugins/gedcomexport.glade: Allow iso-8859-1 (ANSI) encoding
|
||||
* src/docgen/PdfDoc.py: handle page break
|
||||
* src/plugins/BookReport.py: move book report to its own category,
|
||||
handle page break properly
|
||||
* src/plugins/FtmStyleAncestors.py: handle book improvements
|
||||
* src/plugins/FtmStyleDescendants.py: handle book improvements
|
||||
* src/plugins/IndivSummary.py: handle book improvements, rename
|
||||
document styles
|
||||
|
||||
2003-06-24 Tim Waugh <twaugh@redhat.com>
|
||||
* src/GrampsParser.py: Use access methods rather than poking directly.
|
||||
|
@ -1277,6 +1277,9 @@ class Gramps:
|
||||
def load_active_person(self,obj):
|
||||
self.load_person(self.active_person)
|
||||
|
||||
def update_person_list(self,person):
|
||||
self.add_to_person_list(person,0)
|
||||
|
||||
def load_new_person(self,obj):
|
||||
self.active_person = RelLib.Person()
|
||||
try:
|
||||
@ -1679,9 +1682,6 @@ class Gramps:
|
||||
def redisplay_person_list(self,person):
|
||||
self.add_to_person_list(person,1)
|
||||
|
||||
def update_person_list(self,person):
|
||||
self.add_to_person_list(person,0)
|
||||
|
||||
def load_person(self,person):
|
||||
if person:
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user