From 69a7e7440cdafbaeddd344f61cc5dfe54750d509 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Wed, 14 May 2014 11:17:13 -0400 Subject: 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 --- sc/inc/compiler.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sc/inc') diff --git a/sc/inc/compiler.hxx b/sc/inc/compiler.hxx index 8ea5c770e8ce..811028c48ad3 100644 --- a/sc/inc/compiler.hxx +++ b/sc/inc/compiler.hxx @@ -394,8 +394,7 @@ public: //! _either_ CompileForFAP _or_ AutoCorrection, _not_ both // #i101512# SetCompileForFAP is in formula::FormulaCompiler - void SetAutoCorrection( bool bVal ) - { bAutoCorrect = bVal; bIgnoreErrors = bVal; } + void SetAutoCorrection( bool bVal ); void SetCloseBrackets( bool bVal ) { mbCloseBrackets = bVal; } void SetRefConvention( const Convention *pConvP ); void SetRefConvention( const formula::FormulaGrammar::AddressConvention eConv ); -- cgit