summaryrefslogtreecommitdiff
path: root/offapi/com/sun
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-11-13 16:55:48 +0100
committerEike Rathke <erack@redhat.com>2013-11-13 17:15:59 +0100
commitdebe0835cad25931a934eb3e1f205d508e6498cd (patch)
treea80e0cc2f00c668e77f165e0289c65cc2338a1ab /offapi/com/sun
parenta500ab2ee19a5221817c13fc8975c27fe4e92246 (diff)
introduced FormulaGrammar::GRAM_OOXML with FormulaLanguage::OOXML
FormulaLanguage::XL_ENGLISH is not OOXML, unconditionally using SymbolsEnglishXL with RID_STRLIST_FUNCTION_NAMES_ENGLISH_OOXML spoils the grammars of FormulaLanguage::XL_ENGLISH that are not OOXML. Change-Id: Id885d1c033cd15dc7b11c6490be3a98500027d37
Diffstat (limited to 'offapi/com/sun')
-rw-r--r--offapi/com/sun/star/sheet/FormulaLanguage.idl7
1 files changed, 5 insertions, 2 deletions
diff --git a/offapi/com/sun/star/sheet/FormulaLanguage.idl b/offapi/com/sun/star/sheet/FormulaLanguage.idl
index edd79c0355bd..70d357863a5e 100644
--- a/offapi/com/sun/star/sheet/FormulaLanguage.idl
+++ b/offapi/com/sun/star/sheet/FormulaLanguage.idl
@@ -51,10 +51,13 @@ constants FormulaLanguage
const long NATIVE = 3;
/** Function names and operators as used in the English version of
- Excel. This formula language is also used in VBA formulas and
- OOXML import/export.
+ Excel. This formula language is also used in VBA formulas.
*/
const long XL_ENGLISH = 4;
+
+ /** Function names and operators as used in OOXML.
+ */
+ const long OOXML = 5;
};