* src/gramps_main.py: fix reference paths

* src/PeopleView.py: remove gobject import
* src/FamilyView.py: return name prefix/surname tuple
* Makefile.am: installation path from grampslib.so


svn: r2224
This commit is contained in:
Don Allingham
2003-10-11 02:22:51 +00:00
parent f61649e346
commit d8def400f3
3 changed files with 5 additions and 5 deletions

View File

@ -1064,7 +1064,7 @@ class FamilyView:
if f:
pname = f.getPrimaryName()
return (pname.getSurnamePrefix(),pname.getSurname())
return ""
return ("","")
def no_name(self,val):
return ("","")
@ -1074,7 +1074,7 @@ class FamilyView:
father = self.family.getFather()
mother = self.family.getMother()
if not father or not mother:
return ""
return ("","")
fsn = father.getPrimaryName().getSurname()
msn = mother.getPrimaryName().getSurname()
if not father or not mother: