[seam-commits] Seam SVN: r9256 - trunk/src/excel/org/jboss/seam/excel/css.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Fri Oct 10 15:38:00 EDT 2008


Author: danielc.roth
Date: 2008-10-10 15:37:59 -0400 (Fri, 10 Oct 2008)
New Revision: 9256

Modified:
   trunk/src/excel/org/jboss/seam/excel/css/CellStyle.java
Log:
http://www.seamframework.org/Community/UILinkCausesUrlMalformedException

Modified: trunk/src/excel/org/jboss/seam/excel/css/CellStyle.java
===================================================================
--- trunk/src/excel/org/jboss/seam/excel/css/CellStyle.java	2008-10-10 18:36:19 UTC (rev 9255)
+++ trunk/src/excel/org/jboss/seam/excel/css/CellStyle.java	2008-10-10 19:37:59 UTC (rev 9256)
@@ -77,8 +77,8 @@
       font.struckOut = (Boolean) styleMap.get(CSSNames.FONT_STRUCK_OUT);
       font.underlineStyle = (String) styleMap.get(CSSNames.FONT_UNDERLINE_STYLE);
       font.bold = (Boolean) styleMap.get(CSSNames.FONT_BOLD);
-      background.color = (String) styleMap.get(CSSNames.BACKGROUND_PATTERN);
-      background.pattern = (String) styleMap.get(CSSNames.BACKGROUND_COLOR);
+      background.color = (String) styleMap.get(CSSNames.BACKGROUND_COLOR);
+      background.pattern = (String) styleMap.get(CSSNames.BACKGROUND_PATTERN);
       leftBorder.color = (String) styleMap.get(CSSNames.BORDER_LEFT_COLOR);
       leftBorder.lineStyle = (String) styleMap.get(CSSNames.BORDER_LEFT_LINE_STYLE);
       topBorder.color = (String) styleMap.get(CSSNames.BORDER_TOP_COLOR);




More information about the seam-commits mailing list