summaryrefslogtreecommitdiff
path: root/sc/inc/calcconfig.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-12-17 11:57:06 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-12-17 12:55:40 -0500
commit97b583a7bfb5dc9000290c3bdc8df8751a97d65d (patch)
treede102bd416e30823b2be4f09e061936c9ecdce03 /sc/inc/calcconfig.hxx
parentf828e91d1b2f0491e3d1c724ddd12f1b9177f466 (diff)
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
Diffstat (limited to 'sc/inc/calcconfig.hxx')
-rw-r--r--sc/inc/calcconfig.hxx8
1 files changed, 8 insertions, 0 deletions
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.
*/