summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-03-25 01:47:34 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-03-25 01:51:06 +0100
commit4518faa31dec03ffabee30437e6960558a940957 (patch)
tree8e567c76e869a63aa4d272ff7f2c00b95fb427cf
parentee98f0e691e3cf945725a9f1daa90542407e3358 (diff)
we already pass the ScRefCellValue as parameter, tdf#93405
Change-Id: I27f7e8ffe93545fe872a0c5b64f26dc90cb70e6f
-rw-r--r--sc/source/core/tool/cellform.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/cellform.cxx b/sc/source/core/tool/cellform.cxx
index 758d3f43a507..a9877cec9c0a 100644
--- a/sc/source/core/tool/cellform.cxx
+++ b/sc/source/core/tool/cellform.cxx
@@ -199,7 +199,7 @@ OUString ScCellFormat::GetOutputString( ScDocument& rDoc, const ScAddress& rPos,
// like in GetString for document (column)
Color* pColor;
sal_uLong nNumFmt = rDoc.GetNumberFormat(rPos);
- aVal = GetString(rDoc, rPos, nNumFmt, &pColor, *rDoc.GetFormatTable());
+ GetString(rCell, nNumFmt, aVal, &pColor, *rDoc.GetFormatTable(), &rDoc);
}
return aVal;
}