Fixed missing zodbFile and xmlFile constants

svn: r1065
This commit is contained in:
Don Allingham
2002-07-02 15:34:08 +00:00
parent 7fbccb0ae7
commit d84fcbe473
11 changed files with 42 additions and 17 deletions

View File

@@ -55,7 +55,7 @@ class AncestorReport(Report):
gnome.ui.GnomeErrorDialog(_("Could not open %s") % output + "\n" + msg)
def filter(self,person,index):
if person == None or index >= (1 << 31):
if person == None or index >= (1 << 30):
return
self.map[index] = person
@@ -79,7 +79,7 @@ class AncestorReport(Report):
generation = 0
for key in keys :
if generation == 0 or key >= ( 1 << 31):
if generation == 0 or key >= ( 1 << 30):
if self.pgbrk and generation > 0:
self.doc.page_break()
self.doc.start_paragraph("Generation")