r22282 - gnucash/branches/2.4/src/report/standard-reports - [22281] 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:05:52 EDT 2012


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

Modified:
   gnucash/branches/2.4/src/report/standard-reports/transaction.scm
Log:
[22281] 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.

Modified: gnucash/branches/2.4/src/report/standard-reports/transaction.scm
===================================================================
--- gnucash/branches/2.4/src/report/standard-reports/transaction.scm	2012-08-04 12:01:37 UTC (rev 22281)
+++ gnucash/branches/2.4/src/report/standard-reports/transaction.scm	2012-08-04 12:05:52 UTC (rev 22282)
@@ -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