From 97b583a7bfb5dc9000290c3bdc8df8751a97d65d Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Mon, 17 Dec 2012 11:57:06 -0500 Subject: Change the order of always, never, ask enumerations. This tri-state option is commonly ordered ask-always-never or always-never-ask, but not always-ask-never, which is not very common. Change-Id: Ie3a3d1b40397b5cd7d28e64948a2b946bb619b49 --- sc/inc/calcconfig.hxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'sc/inc/calcconfig.hxx') diff --git a/sc/inc/calcconfig.hxx b/sc/inc/calcconfig.hxx index 2006ba2314ee..7a9c73c7c0a6 100644 --- a/sc/inc/calcconfig.hxx +++ b/sc/inc/calcconfig.hxx @@ -32,6 +32,14 @@ #include "scdllapi.h" #include "formula/grammar.hxx" +// have to match the registry values +enum ScRecalcOptions +{ + RECALC_ALWAYS = 0, + RECALC_NEVER, + RECALC_ASK, +}; + /** * Configuration options for formula interpreter. */ -- cgit