diff options
author | Eike Rathke <erack@redhat.com> | 2013-01-30 00:55:19 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-01-30 00:57:47 +0100 |
commit | d701e808782f5849f22c112311a9553f08c8d553 (patch) | |
tree | df4bee66a2fcfaeb3185a3229f73a17cdd9e89bd /sc | |
parent | d210827c83e78fd0dbf6bd00828e29ac31b41abd (diff) |
resolved fdo#60043 write correct IM* function names
Prefixed with _xlfn. instead of programmatic Add-In name.
Change-Id: I4f119f92096329432488503f36df670a4ce19b42
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/oox/formulabase.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/source/filter/oox/formulabase.cxx b/sc/source/filter/oox/formulabase.cxx index 3a01e0c547fb..8aff1069d971 100644 --- a/sc/source/filter/oox/formulabase.cxx +++ b/sc/source/filter/oox/formulabase.cxx @@ -730,6 +730,14 @@ static const FunctionData saFuncTableOox[] = static const FunctionData saFuncTable2013[] = { { "IFNA", "IFNA", NOID, NOID, 2, 2, V, { VO, RO }, FUNCFLAG_MACROCALL_NEW }, + { "IMCOSH", "IMCOSH", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW | FUNCFLAG_EXTERNAL }, + { "IMCOT", "IMCOT", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW | FUNCFLAG_EXTERNAL }, + { "IMCSC", "IMCSC", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW | FUNCFLAG_EXTERNAL }, + { "IMCSCH", "IMCSCH", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW | FUNCFLAG_EXTERNAL }, + { "IMSEC", "IMSEC", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW | FUNCFLAG_EXTERNAL }, + { "IMSECH", "IMSECH", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW | FUNCFLAG_EXTERNAL }, + { "IMSINH", "IMSINH", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW | FUNCFLAG_EXTERNAL }, + { "IMTAN", "IMTAN", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW | FUNCFLAG_EXTERNAL }, }; /** Functions defined by OpenFormula, but not supported by Calc or by Excel. */ |