summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-05-15 15:29:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-05-15 15:32:25 +0100
commit4edc81ef04b1682d51ccc8b62f44e59eb6bd3639 (patch)
tree26c26f11fdccbc24fdb141460af1a93fd3582ebf /lotuswordpro
parentd2546346ac07e4a3483c339d202e75b99b9d063b (diff)
fix original intent of the lwp import code
revert d2546346ac07e4a3483c339d202e75b99b9d063b and fix 8a9448aabcee0171b0dc3b0401600de09455fb10 Change-Id: Ide781e4f197d2fc1d42b0cda8e9d901ac1118d08
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwptblformula.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwptblformula.cxx b/lotuswordpro/source/filter/lwptblformula.cxx
index 1a9fe59516bf..fe1e0c75a53f 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)