Fixed add new person in AddSpouse dialog, fixed a couple of date problems,
Fixed choose parents dialog. svn: r616
This commit is contained in:
parent
1e66f540b9
commit
0370b6cb35
@ -127,7 +127,7 @@ class AddSpouse:
|
|||||||
self.person.addFamily(family)
|
self.person.addFamily(family)
|
||||||
spouse.addFamily(family)
|
spouse.addFamily(family)
|
||||||
|
|
||||||
if self.person.getGender() == Person.male:
|
if self.person.getGender() == RelLib.Person.male:
|
||||||
family.setMother(spouse)
|
family.setMother(spouse)
|
||||||
family.setFather(self.person)
|
family.setFather(self.person)
|
||||||
else:
|
else:
|
||||||
|
@ -141,6 +141,15 @@ class Date:
|
|||||||
self.stop.calendar = self.calendar
|
self.stop.calendar = self.calendar
|
||||||
return self.stop
|
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):
|
def getYear(self):
|
||||||
return self.start.year
|
return self.start.year
|
||||||
|
|
||||||
|
@ -2675,7 +2675,7 @@ information.</text>
|
|||||||
<title_color>125,104,74</title_color>
|
<title_color>125,104,74</title_color>
|
||||||
<background_color>225,220,197</background_color>
|
<background_color>225,220,197</background_color>
|
||||||
<logo_background_color>191,191,191</logo_background_color>
|
<logo_background_color>191,191,191</logo_background_color>
|
||||||
<logo_image>gramps.xpm</logo_image>
|
<logo_image>gramps.png</logo_image>
|
||||||
|
|
||||||
<widget>
|
<widget>
|
||||||
<class>GtkVBox</class>
|
<class>GtkVBox</class>
|
||||||
@ -3192,13 +3192,20 @@ anytime in the program's preference settings</label>
|
|||||||
<last_modification_time>Sun, 24 Dec 2000 00:38:03 GMT</last_modification_time>
|
<last_modification_time>Sun, 24 Dec 2000 00:38:03 GMT</last_modification_time>
|
||||||
</signal>
|
</signal>
|
||||||
<title>Complete</title>
|
<title>Complete</title>
|
||||||
<text>Please enjoy using Gramps.</text>
|
<text>GRAMPS is an Open Source project. Its success
|
||||||
|
depends on the users. User feedback is important.
|
||||||
|
Please join the mailing lists, submit bug reports,
|
||||||
|
suggest improvements, and see how you can
|
||||||
|
contribute.
|
||||||
|
|
||||||
|
Please enjoy using GRAMPS.</text>
|
||||||
<background_color>225,220,197</background_color>
|
<background_color>225,220,197</background_color>
|
||||||
<logo_background_color>191,191,191</logo_background_color>
|
<logo_background_color>191,191,191</logo_background_color>
|
||||||
<textbox_color>255,255,255</textbox_color>
|
<textbox_color>255,255,255</textbox_color>
|
||||||
<text_color>0,0,0</text_color>
|
<text_color>0,0,0</text_color>
|
||||||
<title_color>125,104,74</title_color>
|
<title_color>125,104,74</title_color>
|
||||||
<logo_image>gramps.xpm</logo_image>
|
<logo_image>gramps.png</logo_image>
|
||||||
|
<watermark_image>splash.jpg</watermark_image>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
|
Loading…
Reference in New Issue
Block a user