diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-29 10:43:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-29 12:27:43 +0200 |
commit | 8581d880f8aa8c2be15c875db291cebbb42841c7 (patch) | |
tree | 2cbae7247ebf5a47b9e9e59d47f0ab9dc38a02d2 /sc/inc/formularesult.hxx | |
parent | 316d68416dfee64d54ecaa4839a4045a4f205c4d (diff) |
pack a few more classes
Change-Id: Ia7870d1d0d91de213727116ccda5b41913223866
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95097
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/formularesult.hxx')
-rw-r--r-- | sc/inc/formularesult.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/inc/formularesult.hxx b/sc/inc/formularesult.hxx index a52be96c3832..c17f1e083c4c 100644 --- a/sc/inc/formularesult.hxx +++ b/sc/inc/formularesult.hxx @@ -33,12 +33,11 @@ namespace sc { struct FormulaResultValue { - enum Type { Invalid, Value, String, Error }; - - Type meType; + enum Type : sal_uInt8 { Invalid, Value, String, Error }; double mfValue; svl::SharedString maString; + Type meType; FormulaError mnError; FormulaResultValue(); |