summaryrefslogtreecommitdiff
path: root/sw/inc/calc.hxx
diff options
context:
space:
mode:
authorLászló Németh <nemeth@numbertext.org>2020-08-26 10:59:10 +0200
committerLászló Németh <nemeth@numbertext.org>2020-08-27 09:17:17 +0200
commit79681f6a35ebf70293136034d675d312c5b6cdee (patch)
tree60efd46a0ffbc10ccf47d9cdd6fb1cb3b7c58af0 /sw/inc/calc.hxx
parent894a0f77c12f3ac4029bdeb671943f32bcad875c (diff)
tdf#123356 sw: add table formula COUNT
for DOCX interoperability. See also commit f1f27b2487ccfb7a03190ff68eadbfb611dd9749 (tdf#123356 DOCX import: fix COUNT formula). Change-Id: I951944ed92bcbed3388f5d7e364e7ff104f37d1d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101395 Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'sw/inc/calc.hxx')
-rw-r--r--sw/inc/calc.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/inc/calc.hxx b/sw/inc/calc.hxx
index a8eb9c18933a..e2b2677a1503 100644
--- a/sw/inc/calc.hxx
+++ b/sw/inc/calc.hxx
@@ -54,7 +54,8 @@ enum SwCalcOper
CALC_COS=274, CALC_TAN=275, CALC_ASIN=276,
CALC_ACOS=278, CALC_ATAN=279, CALC_TDIF=280,
CALC_ROUND=281, CALC_DATE=282, CALC_MONTH=283,
- CALC_DAY=284, CALC_PRODUCT=285, CALC_AVERAGE=286
+ CALC_DAY=284, CALC_PRODUCT=285, CALC_AVERAGE=286,
+ CALC_COUNT=287
};
// Calculate Operations Strings
@@ -79,6 +80,7 @@ extern const char sCalc_Sum[];
extern const char sCalc_Mean[];
extern const char sCalc_Average[];
extern const char sCalc_Product[];
+extern const char sCalc_Count[];
extern const char sCalc_Min[];
extern const char sCalc_Max[];
extern const char sCalc_Sin[];