Changed the names of the styles of tables and fixed a col width error (which weren't used, but will be in the webapp)

svn: r13580
This commit is contained in:
Doug Blank
2009-11-14 22:50:19 +00:00
parent 02d095ca8c
commit b5ca175f2b
2 changed files with 11 additions and 9 deletions

View File

@@ -137,10 +137,10 @@ def make_basic_stylesheet():
sheet.add_cell_style("TableHead",cell)
cell = TableCellStyle()
sheet.add_cell_style("TableNormalCell",cell)
sheet.add_cell_style("TableHeaderCell",cell)
cell = TableCellStyle()
cell.set_longlist(1)
sheet.add_cell_style("TableListCell",cell)
sheet.add_cell_style("TableDataCell",cell)
return sheet