diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-14 11:17:13 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-14 13:15:11 -0400 |
commit | 69a7e7440cdafbaeddd344f61cc5dfe54750d509 (patch) | |
tree | 98eb2f408311889077da87014a5c6375ae72334a /include | |
parent | 5db9391c0640450f3e30dfa9d2c9b8ff9c79b958 (diff) |
Use "stop on error" concept rather than "ignore error if true".
Just to keep the pattern of "true" -> "action", "false" -> "no action".
Change-Id: I6303bc779cd7048eef2fdc3c2abba8be8f15da6d
Diffstat (limited to 'include')
-rw-r--r-- | include/formula/FormulaCompiler.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/formula/FormulaCompiler.hxx b/include/formula/FormulaCompiler.hxx index 8d4627e51fd8..ec1aba3782b1 100644 --- a/include/formula/FormulaCompiler.hxx +++ b/include/formula/FormulaCompiler.hxx @@ -337,11 +337,10 @@ protected: bool bAutoCorrect; // whether to apply AutoCorrection bool bCorrected; // AutoCorrection was applied - bool bIgnoreErrors; // on AutoCorrect and CompileForFAP - // ignore errors and create RPN nevertheless bool glSubTotal; // if code contains one or more subtotal functions bool mbJumpCommandReorder; /// Whether or not to reorder RPN for jump commands. + bool mbStopOnError; /// Whether to stop compilation on first encountered error. private: void InitSymbolsNative() const; /// only SymbolsNative, on first document creation |