2007-12-10 Benny Malengier <benny.malengier@gramps-project.org>

* src/gen/lib/notebase.py: change comment string
	* src/gen/lib/person.py: change comment string
	* src/gen/lib/event.py: add attr to list of sec objects, bug #1318



svn: r9481
This commit is contained in:
Benny Malengier 2007-12-10 21:44:09 +00:00
parent 87ee404c3b
commit 283678e47e
4 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-12-10 Benny Malengier <benny.malengier@gramps-project.org>
* src/gen/lib/notebase.py: change comment string
* src/gen/lib/person.py: change comment string
* src/gen/lib/event.py: add attr to list of sec objects, bug #1318
2007-12-10 Zdenek Hatas <zdenek.hatas@gmail.com>
* src/DateHandler/_Date_cs.py: czech datehandler added
* src/DateHandler/__init__.py: czech datehandler included

View File

@ -220,7 +220,7 @@ class Event(SourceBase, NoteBase, MediaBase, AttributeBase,
@return: Returns the list of objects refereincing primary objects.
@rtype: list
"""
return self.media_list + self.source_list
return self.get_sourcref_child_list() + self.source_list
def is_empty(self):
"""

View File

@ -35,7 +35,7 @@ class NoteBase:
"""
Base class for storing notes.
Starting in 2.3 branch, the objects may have multiple notes.
Starting in 3.0 branch, the objects may have multiple notes.
Internally, this class maintains a list of Note handles,
as a note_list attribute of the NoteBase object.
"""

View File

@ -350,6 +350,7 @@ class Person(SourceBase, NoteBase, AttributeBase, MediaBase,
@return: Returns the list of objects refereincing primary objects.
@rtype: list
"""
#don't count double, notes can be found in sourcref
return self.get_sourcref_child_list() + self.source_list \
+ self.event_ref_list