Changeset 3109

Show
Ignore:
Timestamp:
05/09/2007 02:21:54 AM (2 years ago)
Author:
paul
Message:

Fixed a bug in reportWriter that didn't reset the current column to 0 at the
end of a page, which resulted in skewed output for the following page.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dabo/lib/reportWriter.py

    r3054 r3109  
    12881288                        endPage() 
    12891289                        beginPage() 
    1290                         self._currentColumn = 0 
    12911290                    else: 
    12921291                        self._currentColumn += 1 
     
    13361335 
    13371336        def endPage(): 
     1337            self._currentColumn = 0 
    13381338            printBand("pageForeground") 
    13391339            self.Canvas.showPage()