Tweaks to use inplace arithmetic
svn: r13191
This commit is contained in:
src
Bookmarks.py
DataViews
FilterEditor
PlaceUtils.pyPluginUtils
RecentFiles.pyReportBase
_Bibliography.py_DrawReportDialog.py_GraphvizReportDialog.py_ReportDialog.py_ReportUtils.py_StyleEditor.py_TextReportDialog.py
docgen
gen
lib
plugins
widgets
@ -317,12 +317,12 @@ class AsciiDoc(BaseDoc,TextDoc):
|
||||
def start_cell(self,style_name,span=1):
|
||||
self.in_cell = 1
|
||||
self.cellnum = self.cellnum + span
|
||||
span = span - 1
|
||||
span -= 1
|
||||
while span:
|
||||
self.cell_widths[self.cellnum] += \
|
||||
self.cell_widths[self.cellnum-span]
|
||||
self.cell_widths[self.cellnum-span] = 0
|
||||
span = span - 1
|
||||
span -= 1
|
||||
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user