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.

svn: r10175
This commit is contained in:
Brian Matherly 2008-03-03 04:19:45 +00:00
parent 504f0e554a
commit afa4d05227
2 changed files with 7 additions and 8 deletions

View File

@ -1,3 +1,10 @@
2008-03-02 Brian Matherly <brian@gramps-project.org>
* 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 <brian@gramps-project.org>
* src/plugins/Calendar.py:
0001880: Birthday and Anniversary Report does not work

View File

@ -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)