svn: r5244
This commit is contained in:
Alex Roitman 2005-09-27 05:00:23 +00:00
parent 4d3a6ffae7
commit 3ba7eed3e9
3 changed files with 4 additions and 5 deletions

View File

@ -43,7 +43,6 @@ from gettext import gettext as _
# GRAMPS modules # GRAMPS modules
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
import const
import Errors import Errors
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
@ -251,7 +250,7 @@ def register_report(
(junk,book_item_task) = divmod(modes-standalone_task,2**Report.MODE_BKI) (junk,book_item_task) = divmod(modes-standalone_task,2**Report.MODE_BKI)
if book_item_task: if book_item_task:
book_item_category = const.book_categories[category] book_item_category = Report.book_categories[category]
register_book_item(translated_name,book_item_category, register_book_item(translated_name,book_item_category,
report_class,options_class,name) report_class,options_class,name)

View File

@ -268,7 +268,7 @@ class PluginDialog:
# build the tree items and group together based on the category name # build the tree items and group together based on the category name
item_hash = {} item_hash = {}
for report in item_list: for report in item_list:
category = const.standalone_categories[report[3]] category = Report.standalone_categories[report[3]]
if item_hash.has_key(category): if item_hash.has_key(category):
item_hash[category].append(report) item_hash[category].append(report)
else: else:
@ -466,7 +466,7 @@ def build_report_menu(top_menu,callback):
hash_data = {} hash_data = {}
for report in PluginMgr.report_list: for report in PluginMgr.report_list:
standalone_category = const.standalone_categories[report[3]] standalone_category = Report.standalone_categories[report[3]]
if hash_data.has_key(standalone_category): if hash_data.has_key(standalone_category):
hash_data[standalone_category].append( hash_data[standalone_category].append(
(report[0],report[1],report[2],report[4],report[3])) (report[0],report[1],report[2],report[4],report[3]))

View File

@ -985,7 +985,7 @@ class ReportDialog(BareReportDialog):
def get_title(self): def get_title(self):
"""The window title for this dialog""" """The window title for this dialog"""
name = self.report_name name = self.report_name
category = const.standalone_categories[self.category] category = standalone_categories[self.category]
return "%s - %s - GRAMPS" % (name,category) return "%s - %s - GRAMPS" % (name,category)
def get_header(self, name): def get_header(self, name):