summaryrefslogtreecommitdiff
path: root/include/formula/opcode.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/formula/opcode.hxx')
-rw-r--r--include/formula/opcode.hxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx
index e71b3ff05549..81774d97e255 100644
--- a/include/formula/opcode.hxx
+++ b/include/formula/opcode.hxx
@@ -513,9 +513,14 @@ enum OpCode : sal_uInt16
ocSortBy = SC_OPCODE_SORTBY,
ocMatSequence = SC_OPCODE_MAT_SEQUENCE,
ocRandArray = SC_OPCODE_RANDARRAY,
+ ocDrop = SC_OPCODE_DROP,
+ ocExpand = SC_OPCODE_EXPAND,
+ ocTake = SC_OPCODE_TAKE,
ocToCol = SC_OPCODE_TOCOL,
ocToRow = SC_OPCODE_TOROW,
ocUnique = SC_OPCODE_UNIQUE,
+ ocWrapCols = SC_OPCODE_WRAPCOLS,
+ ocWrapRows = SC_OPCODE_WRAPROWS,
// internal stuff
ocInternalBegin = SC_OPCODE_INTERNAL_BEGIN,
ocTTT = SC_OPCODE_TTT,
@@ -1000,10 +1005,15 @@ inline std::string OpCodeEnumToString(OpCode eCode)
case ocFilter: return "Filter";
case ocSort: return "Sort";
case ocSortBy: return "SortBy";
+ case ocDrop: return "Drop";
+ case ocExpand: return "Expand";
+ case ocTake: return "Take";
case ocToCol: return "ToCol";
case ocToRow: return "ToRow";
case ocUnique: return "Unique";
case ocLet: return "Let";
+ case ocWrapCols: return "WrapCols";
+ case ocWrapRows: return "WrapRows";
case ocTTT: return "TTT";
case ocDebugVar: return "DebugVar";
case ocDataToken1: return "DataToken1";