summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-09-25 20:35:24 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-09-25 20:35:24 -0400
commitceffb55cd53bcae4ec6f1b967ff45d01207a004e (patch)
tree6a6f1a27c373d4c7b3bd169c60cd637bb10fb7c7
parentLeave the formula cell dirty when a cached result is not given. (diff)
downloadcore-ceffb55cd53bcae4ec6f1b967ff45d01207a004e.tar.gz
core-ceffb55cd53bcae4ec6f1b967ff45d01207a004e.zip
Use this flag to make the compiler warning go away.
Incidentally, when the flag is false we'll throw an argument error. We need to implement it properly later. Change-Id: I70f8b6bac3cf8ad1dae67efc65a9ab16e099253e
-rw-r--r--sc/source/core/tool/interpr1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index 68269a331de9..dfbf8da01dbe 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -6587,7 +6587,7 @@ void ScInterpreter::ScSubTotal()
nFunc -= 100;
}
- if( nFunc < 1 || nFunc > 11 )
+ if (nFunc < 1 || nFunc > 11 || !bIncludeHidden)
PushIllegalArgument(); // simulate return on stack, not SetError(...)
else
{