* src/const.py.in: eliminate zipcmd

* src/docgen/OpenSpreadSheet.py: eliminate the need for ZIP, use python
zipfile module instead
* src/plugins/EventCmp.py (DisplayChart.on_save_clicked): fix rows, double lines
no longer used
* configure.in: add check for vfs bindings, eliminate the check for
swig and zip
* gramps.spec.in (Requires): Added gnome-python2-gnomevfs dependency


svn: r2577
This commit is contained in:
Don Allingham
2004-01-01 19:10:23 +00:00
parent 9442619e59
commit d082cb92e6
5 changed files with 96 additions and 32 deletions

View File

@@ -333,11 +333,10 @@ class DisplayChart:
spreadsheet.write_table_head(self.event_titles)
index = 0
for (top,bottom) in self.row_data:
for top in self.row_data:
spreadsheet.set_row(index%2)
index = index + 1
spreadsheet.write_table_data(top)
spreadsheet.write_table_data(bottom)
spreadsheet.finalize()
Utils.destroy_passed_object(obj)