AUDIT: r22281 - gnucash/trunk/src/report/standard-reports - Bug #680576 - Transaction report: date takes up two lines when using Canadian locale format.

Mike Evans mikee at code.gnucash.org
Sat Aug 4 08:01:38 EDT 2012


Author: mikee
Date: 2012-08-04 08:01:37 -0400 (Sat, 04 Aug 2012)
New Revision: 22281
Trac: http://svn.gnucash.org/trac/changeset/22281

Modified:
   gnucash/trunk/src/report/standard-reports/transaction.scm
Log:
Bug #680576 - Transaction report: date takes up two lines when using Canadian locale format.

Change date cells type from text-cell to date-cell to apply white-space: nowrap
style.
BP

Modified: gnucash/trunk/src/report/standard-reports/transaction.scm
===================================================================
--- gnucash/trunk/src/report/standard-reports/transaction.scm	2012-08-04 02:40:22 UTC (rev 22280)
+++ gnucash/trunk/src/report/standard-reports/transaction.scm	2012-08-04 12:01:37 UTC (rev 22281)
@@ -474,12 +474,12 @@
     (if (used-date column-vector)
         (addto! row-contents
                 (if transaction-row?
-                    (gnc:make-html-table-cell/markup "text-cell"
+                    (gnc:make-html-table-cell/markup "date-cell"
                         (gnc-print-date (gnc-transaction-get-date-posted parent)))
                     " ")))
     (if (used-reconciled-date column-vector)
         (addto! row-contents
-                (gnc:make-html-table-cell/markup "text-cell"
+                (gnc:make-html-table-cell/markup "date-cell"
 		    (let ((date (gnc-split-get-date-reconciled split)))
 		      (if (equal? date (cons 0 0))
 		          " "



More information about the gnucash-changes mailing list