From e03f293238edb93fb84db0627a4d7928a0d33a80 Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Tue, 27 Oct 2009 02:35:42 +0000 Subject: [PATCH] Fix some residual bugs from the implementation of the new plugin manager. svn: r13430 --- src/ReportBase/_DrawReportDialog.py | 2 +- src/plugins/textreport/textplugins.gpr.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ReportBase/_DrawReportDialog.py b/src/ReportBase/_DrawReportDialog.py index 156cb599d..7e85a1a81 100644 --- a/src/ReportBase/_DrawReportDialog.py +++ b/src/ReportBase/_DrawReportDialog.py @@ -51,7 +51,7 @@ class _DrawFormatComboBox(gtk.ComboBox): gtk.ComboBox.__init__(self) - pmgr = PluginManager.get_instance() + pmgr = GuiPluginManager.get_instance() self.__drawdoc_plugins = [] for plugin in pmgr.get_docgen_plugins(): if plugin.get_draw_support(): diff --git a/src/plugins/textreport/textplugins.gpr.py b/src/plugins/textreport/textplugins.gpr.py index 1adf7b48f..7053603ef 100644 --- a/src/plugins/textreport/textplugins.gpr.py +++ b/src/plugins/textreport/textplugins.gpr.py @@ -53,7 +53,7 @@ plg.name = _("Birthday and Anniversary Report") plg.description = _("Produces a report of birthdays and anniversaries") plg.version = '1.0' plg.status = STABLE -plg.fname = 'AncestorReport.py' +plg.fname = 'BirthdayReport.py' plg.ptype = REPORT plg.authors = ["Douglas S. Blank"] plg.authors_email = ["dblank@cs.brynmawr.edu"]