9137: Report Plugin [LaTeX backend] crashes

This commit is contained in:
Paul Franklin 2015-12-28 12:02:15 -08:00
parent f0e2aa6cc9
commit 74f9fb1b8e

View File

@ -472,7 +472,7 @@ class IndivCompleteReport(Report):
tags.append(tag.get_name()) tags.append(tag.get_name())
for text in sorted(tags): for text in sorted(tags):
self.doc.start_row() self.doc.start_row()
self.write_cell(text) self.write_cell(text, span=2)
self.doc.end_row() self.doc.end_row()
self.doc.end_table() self.doc.end_table()
self.doc.start_paragraph('IDS-Normal') self.doc.start_paragraph('IDS-Normal')
@ -708,8 +708,9 @@ class IndivCompleteReport(Report):
if group in event_dict: if group in event_dict:
self.write_section(event_dict[group], group) self.write_section(event_dict[group], group)
def write_cell(self, text, endnotes=None, mark=None, style='IDS-Normal'): def write_cell(self, text,
self.doc.start_cell('IDS-NormalCell') endnotes=None, mark=None, style='IDS-Normal', span=1):
self.doc.start_cell('IDS-NormalCell', span)
self.write_paragraph(text, endnotes=endnotes, mark=mark, style=style) self.write_paragraph(text, endnotes=endnotes, mark=mark, style=style)
self.doc.end_cell() self.doc.end_cell()