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:
Brian Matherly
2008-02-20 04:52:10 +00:00
parent 65951d6722
commit cc6654ddab
34 changed files with 148 additions and 129 deletions

View File

@ -48,7 +48,7 @@ import DateHandler
#------------------------------------------------------------------------
class EndOfLineReport(Report):
def __init__(self, database, person, options_class):
def __init__(self, database, options_class):
"""
Creates the EndOfLineReport object that produces the report.
@ -62,7 +62,7 @@ class EndOfLineReport(Report):
that come in the options class.
"""
Report.__init__(self, database, person, options_class)
Report.__init__(self, database, options_class)
menu = options_class.menu
pid = menu.get_option_by_name('pid').get_value()