Fixed add new person in AddSpouse dialog, fixed a couple of date problems,

Fixed choose parents dialog.


svn: r616
This commit is contained in:
Don Allingham
2001-12-14 13:58:30 +00:00
parent b3f46c68c7
commit 54ff29f9c5
3 changed files with 20 additions and 4 deletions

View File

@@ -141,6 +141,15 @@ class Date:
self.stop.calendar = self.calendar
return self.stop
def getLowYear(self):
return self.start.getYear()
def getHighYear(self):
if self.stop == None:
return self.start.getYear()
else:
return self.stop.getYear()
def getYear(self):
return self.start.year