Remove the "person" option from reports, report options, and report dialogs. Person is selected by the user for all reports.
svn: r10074
This commit is contained in:
@ -62,7 +62,7 @@ HENRY = "123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||
#------------------------------------------------------------------------
|
||||
class DetDescendantReport(Report):
|
||||
|
||||
def __init__(self, database, person, options_class):
|
||||
def __init__(self, database, options_class):
|
||||
"""
|
||||
Creates the DetDescendantReport object that produces the report.
|
||||
|
||||
@ -92,7 +92,7 @@ class DetDescendantReport(Report):
|
||||
addimages - Whether to include images.
|
||||
pid - The Gramps ID of the center person for the report.
|
||||
"""
|
||||
Report.__init__(self, database, person, options_class)
|
||||
Report.__init__(self, database, options_class)
|
||||
|
||||
self.map = {}
|
||||
|
||||
|
Reference in New Issue
Block a user