diff --git a/ChangeLog b/ChangeLog index a1f901b13..0ab1384f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-03-02 Brian Matherly + * src/docgen/TextBufDoc.py: + 0001882: Reports->Text Reports->Kinship Report output to + "Text buffer" causes an error + No longer use Text Buffer for reports because TextBufDoc does not + conform to the report interface. + 2008-03-02 Brian Matherly * src/plugins/Calendar.py: 0001880: Birthday and Anniversary Report does not work diff --git a/src/docgen/TextBufDoc.py b/src/docgen/TextBufDoc.py index afe267735..339a0a12d 100644 --- a/src/docgen/TextBufDoc.py +++ b/src/docgen/TextBufDoc.py @@ -336,11 +336,3 @@ class TextBufDoc(BaseDoc.BaseDoc, BaseDoc.TextDoc): def write_text(self,text,mark=None): self.text = self.text + text -#------------------------------------------------------------------------ -# -# Register the document generator with the GRAMPS plugin system -# -#------------------------------------------------------------------------ -print_label = None -register_text_doc(_("TextBuffer"), TextBufDoc, 1, 1, 1, ".xyz", None) -