summaryrefslogtreecommitdiffstats
path: root/include/formula
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-06-16 01:19:22 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-06-16 15:59:06 +0200
commit3b9620e18bdcb91a229e9aefef5192f346030b52 (patch)
tree521daa0fd89815baad948d26ea7d383dd910d51e /include/formula
parentuse the implicit conversion (diff)
downloadcore-3b9620e18bdcb91a229e9aefef5192f346030b52.tar.gz
core-3b9620e18bdcb91a229e9aefef5192f346030b52.zip
inital work on FILTERXML function
Change-Id: Ifb884a52b275df818812f8be6cd7650dcb97849d
Diffstat (limited to 'include/formula')
-rw-r--r--include/formula/compiler.hrc5
-rw-r--r--include/formula/opcode.hxx1
2 files changed, 4 insertions, 2 deletions
diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc
index e6c6ef3d0df3..fd7453d74995 100644
--- a/include/formula/compiler.hrc
+++ b/include/formula/compiler.hrc
@@ -407,9 +407,10 @@
#define SC_OPCODE_RIGHTB 409
#define SC_OPCODE_LEFTB 410
#define SC_OPCODE_MIDB 412
-#define SC_OPCODE_LAST_OPCODE_ID 413 /* last OpCode */
+#define SC_OPCODE_FILTERXML 413
+#define SC_OPCODE_LAST_OPCODE_ID 414 /* last OpCode */
-#define SC_OPCODE_STOP_FUNCTION 412
+#define SC_OPCODE_STOP_FUNCTION 415
/*** Internal ***/
#define SC_OPCODE_INTERNAL_BEGIN 9999
diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx
index 47e2cdc2dff4..5ebaa6bf7818 100644
--- a/include/formula/opcode.hxx
+++ b/include/formula/opcode.hxx
@@ -401,6 +401,7 @@ enum OpCodeEnum
ocHyperLink = SC_OPCODE_HYPERLINK,
ocGetPivotData = SC_OPCODE_GET_PIVOT_DATA,
ocEuroConvert = SC_OPCODE_EUROCONVERT,
+ ocFilterXML = SC_OPCODE_FILTERXML,
// internal stuff
ocInternalBegin = SC_OPCODE_INTERNAL_BEGIN,
ocTTT = SC_OPCODE_TTT,