sc/source/core/tool/formularesult.cxx | 3 +++ 1 file changed, 3 insertions(+)
New commits: commit ee86d223b8e6b5d164e96e6169a9d1f145081a1e Author: Kohei Yoshida <[email protected]> Date: Fri Apr 21 21:42:32 2017 -0400 tdf#107310: hybrid cell is a value cell as well as a string cell. Else it would cause a legitimate calculation to fail with #VALUE!. Change-Id: If8d4f40859d0c87b97afc952e4a3e4268450c40c Reviewed-on: https://gerrit.libreoffice.org/36817 Tested-by: Jenkins <[email protected]> Reviewed-by: Kohei Yoshida <[email protected]> (cherry picked from commit 7c80ea40fab3cb8e8893d14e80e7bb7f63f0dbb0) Reviewed-on: https://gerrit.libreoffice.org/36917 Reviewed-by: Eike Rathke <[email protected]> diff --git a/sc/source/core/tool/formularesult.cxx b/sc/source/core/tool/formularesult.cxx index 95b8ded0cca5..90becca556dc 100644 --- a/sc/source/core/tool/formularesult.cxx +++ b/sc/source/core/tool/formularesult.cxx @@ -294,6 +294,9 @@ inline bool isString( formula::StackVar sv ) bool ScFormulaResult::IsValue() const { + if (IsEmptyDisplayedAsString()) + return true; + return isValue(GetCellResultType()); } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
