[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - reportbuilder/java

Lionel Elie Mamane lionel at mamane.lu
Sat Apr 13 06:14:34 PDT 2013


 reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FormatValueUtility.java |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit add46920608b6f5b79c0ca33845eae4e1e59a4b6
Author: Lionel Elie Mamane <lionel at mamane.lu>
Date:   Wed Apr 10 17:49:53 2013 +0200

    work around fdo#62147
    
    don't emit string-value attribute
    
    Change-Id: I3668b88437451523f2b6bb3c2c82e1929f7ba3d8
    Reviewed-on: https://gerrit.libreoffice.org/3311
    Reviewed-by: Miklos Vajna <vmiklos at suse.cz>
    Tested-by: Miklos Vajna <vmiklos at suse.cz>

diff --git a/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FormatValueUtility.java b/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FormatValueUtility.java
index 99ff3e5..ad303af 100644
--- a/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FormatValueUtility.java
+++ b/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/FormatValueUtility.java
@@ -189,7 +189,8 @@ public class FormatValueUtility
             {
                 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, VALUE_TYPE, "string");
             }
-            variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, STRING_VALUE, String.valueOf(value));
+            // work around fdo#62147
+            //variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, STRING_VALUE, String.valueOf(value));
         }
         else
         {


More information about the Libreoffice-commits mailing list