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

Lionel Elie Mamane lionel at mamane.lu
Tue Aug 13 00:42:42 PDT 2013


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

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

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

diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/FormatValueUtility.java b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/FormatValueUtility.java
index d4c86c6..074ae96 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/FormatValueUtility.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/FormatValueUtility.java
@@ -171,7 +171,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#68024
+            //variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, STRING_VALUE, String.valueOf(value));
         }
         else
         {


More information about the Libreoffice-commits mailing list