From 1093b900b43d819c9a730ef6435fed0f3687a085 Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Thu, 10 Jul 2014 16:13:40 +0200 Subject: resolved fdo#80195 act on implicitly propagated error, if any Change-Id: I1d5a55a14fc3e25edc2cddec5b53ed2afa96bd3e --- sc/source/core/tool/interpr1.cxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx index b9e3d122e7c2..df65daa693fe 100644 --- a/sc/source/core/tool/interpr1.cxx +++ b/sc/source/core/tool/interpr1.cxx @@ -253,6 +253,11 @@ void ScInterpreter::ScIfError( bool bNAonly ) { default: Pop(); + // Act on implicitly propagated error, if any. + if (nOldGlobalError) + nGlobalError = nOldGlobalError; + if (nGlobalError) + bError = true; break; case svError: PopError(); -- cgit v1.2.1