diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-06-25 13:38:20 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-06-27 15:47:54 -0400 |
commit | 9e57b12f21264651a33a6ea52db4eb07618056f8 (patch) | |
tree | 5b249e013989b3da8e0f7dde78d8b5eccd28eaf6 /sc | |
parent | 9e79d6d1120b7d96333016725f1a51def7b8d0e7 (diff) |
I forgot to pass the string param objects.
Change-Id: I691de93daa1a6acaa99fba3af359f062406023d3
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/app/transobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/app/transobj.cxx b/sc/source/ui/app/transobj.cxx index 1fecb4992cb4..c929a62ef0ce 100644 --- a/sc/source/ui/app/transobj.cxx +++ b/sc/source/ui/app/transobj.cxx @@ -808,7 +808,7 @@ void ScTransferObj::StripRefs( ScDocument* pDoc, ScSetStringParam aParam; aParam.setTextInput(); - pDestDoc->SetString(aPos, ScGlobal::GetErrorString(nErrCode)); + pDestDoc->SetString(aPos, ScGlobal::GetErrorString(nErrCode), &aParam); } else if (pFCell->IsValue()) { @@ -827,7 +827,7 @@ void ScTransferObj::StripRefs( ScDocument* pDoc, { ScSetStringParam aParam; aParam.setTextInput(); - pDestDoc->SetString(aPos, aStr); + pDestDoc->SetString(aPos, aStr, &aParam); } } } |