diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2014-12-15 09:45:26 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-01-26 22:16:06 +0000 |
commit | 25434372bf56e0ebdb7e7d47ab3c14c68211509f (patch) | |
tree | 52d7afa7523af68d9181770a0ac7c3ec3d58bb49 /include/formula | |
parent | 6744fe62973edbc2a4108905192fce4b2854ac39 (diff) |
fdo#76870 Add support for Excel2013 function ENCODEURL
Change-Id: I369bcd58055364757b6a098fc3aa0c0065c79b67
Reviewed-on: https://gerrit.libreoffice.org/13478
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include/formula')
-rw-r--r-- | include/formula/compiler.hrc | 3 | ||||
-rw-r--r-- | include/formula/opcode.hxx | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc index 2d2dd3692c1d..dbbea9043213 100644 --- a/include/formula/compiler.hrc +++ b/include/formula/compiler.hrc @@ -195,7 +195,8 @@ #define SC_OPCODE_ERF_MS 163 #define SC_OPCODE_ERFC_MS 164 #define SC_OPCODE_ERROR_TYPE_ODF 165 -#define SC_OPCODE_STOP_1_PAR 166 +#define SC_OPCODE_ENCODEURL 166 +#define SC_OPCODE_STOP_1_PAR 167 /*** Functions with more than one parameters ***/ #define SC_OPCODE_START_2_PAR 201 diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx index a282dae5be99..3a2af3a7dc28 100644 --- a/include/formula/opcode.hxx +++ b/include/formula/opcode.hxx @@ -465,6 +465,7 @@ enum OpCode : sal_uInt16 ocColor = SC_OPCODE_COLOR, ocErf_MS = SC_OPCODE_ERF_MS, ocErfc_MS = SC_OPCODE_ERFC_MS, + ocEncodeURL = SC_OPCODE_ENCODEURL, // internal stuff ocInternalBegin = SC_OPCODE_INTERNAL_BEGIN, ocTTT = SC_OPCODE_TTT, |