summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-01-30 00:55:19 +0100
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-01-30 21:41:29 +0000
commitf3f092903bfaae0ee27ec56f7a004476e35460e1 (patch)
treed105ac2d4885a46a85e3f85c5179057a9e049cbb /sc
parent05d97f486fc1db564d9c7b372ba2e7a867502c80 (diff)
resolved fdo#60043 write correct IM* function names
Prefixed with _xlfn. instead of programmatic Add-In name. Change-Id: I4f119f92096329432488503f36df670a4ce19b42 (cherry picked from commit d701e808782f5849f22c112311a9553f08c8d553) Reviewed-on: https://gerrit.libreoffice.org/1920 Reviewed-by: Kohei Yoshida <kohei.yoshida@gmail.com> Tested-by: Kohei Yoshida <kohei.yoshida@gmail.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/oox/formulabase.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/source/filter/oox/formulabase.cxx b/sc/source/filter/oox/formulabase.cxx
index ebbad4585865..929e6b018688 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -729,6 +729,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. */