[Libreoffice-commits] core.git: lotuswordpro/source

Caolán McNamara caolanm at redhat.com
Wed May 15 07:33:45 PDT 2013


 lotuswordpro/source/filter/lwptblformula.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 4edc81ef04b1682d51ccc8b62f44e59eb6bd3639
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Wed May 15 15:29:31 2013 +0100

    fix original intent of the lwp import code
    
    revert d2546346ac07e4a3483c339d202e75b99b9d063b
    and fix 8a9448aabcee0171b0dc3b0401600de09455fb10
    
    Change-Id: Ide781e4f197d2fc1d42b0cda8e9d901ac1118d08

diff --git a/lotuswordpro/source/filter/lwptblformula.cxx b/lotuswordpro/source/filter/lwptblformula.cxx
index 1a9fe59..fe1e0c7 100644
--- a/lotuswordpro/source/filter/lwptblformula.cxx
+++ b/lotuswordpro/source/filter/lwptblformula.cxx
@@ -594,6 +594,10 @@ OUString LwpFormulaFunc::ToString(LwpTableLayout* pCellsMap)
 {
     OUString aFormula;
 
+    OUString aFuncName = LwpFormulaTools::GetName(m_nTokenType);
+    aFormula += aFuncName;
+    aFormula += " ";//Append a blank space
+
     //Append args
     vector<LwpFormulaArg*>::iterator aItr;
     for (aItr=m_aArgs.begin();aItr!=m_aArgs.end();++aItr)


More information about the Libreoffice-commits mailing list