Kaydet (Commit) 14729a8a authored tarafından Eike Rathke's avatar Eike Rathke

Remove unused ocIndirectXL and ocAddressXL

Separated implementation is gone since long.

Change-Id: I78279f631c9205202af92ad8e248f9a1226b7a19
Reviewed-on: https://gerrit.libreoffice.org/61075Reviewed-by: 's avatarEike Rathke <erack@redhat.com>
Tested-by: Jenkins
üst ff4a319f
...@@ -988,11 +988,10 @@ bool FormulaCompiler::IsOpCodeVolatile( OpCode eOp ) ...@@ -988,11 +988,10 @@ bool FormulaCompiler::IsOpCodeVolatile( OpCode eOp )
case ocFormula: case ocFormula:
case ocInfo: case ocInfo:
// more than one parameters: // more than one parameters:
// ocIndirect/ocIndirectXL otherwise would have to do // ocIndirect otherwise would have to do
// StopListening and StartListening on a reference for every // StopListening and StartListening on a reference for every
// interpreted value. // interpreted value.
case ocIndirect: case ocIndirect:
case ocIndirectXL:
// ocOffset results in indirect references. // ocOffset results in indirect references.
case ocOffset: case ocOffset:
// ocDebugVar shows internal value that may change as the internal state changes. // ocDebugVar shows internal value that may change as the internal state changes.
......
...@@ -396,8 +396,8 @@ ...@@ -396,8 +396,8 @@
#define SC_OPCODE_CELL 385 #define SC_OPCODE_CELL 385
#define SC_OPCODE_ISPMT 386 #define SC_OPCODE_ISPMT 386
#define SC_OPCODE_HYPERLINK 387 #define SC_OPCODE_HYPERLINK 387
#define SC_OPCODE_INDIRECT_XL 388 /* See also INDIRECT for OOO variant */ // free: 388
#define SC_OPCODE_ADDRESS_XL 389 /* See also ADDRESS for OOO variant */ // free: 389
#define SC_OPCODE_GET_PIVOT_DATA 390 #define SC_OPCODE_GET_PIVOT_DATA 390
#define SC_OPCODE_EUROCONVERT 391 #define SC_OPCODE_EUROCONVERT 391
#define SC_OPCODE_NUMBERVALUE 392 #define SC_OPCODE_NUMBERVALUE 392
......
...@@ -303,9 +303,7 @@ enum OpCode : sal_uInt16 ...@@ -303,9 +303,7 @@ enum OpCode : sal_uInt16
ocDBVarP = SC_OPCODE_DB_VAR_P, ocDBVarP = SC_OPCODE_DB_VAR_P,
// Management functions // Management functions
ocIndirect = SC_OPCODE_INDIRECT, ocIndirect = SC_OPCODE_INDIRECT,
ocIndirectXL = SC_OPCODE_INDIRECT_XL,
ocAddress = SC_OPCODE_ADDRESS, ocAddress = SC_OPCODE_ADDRESS,
ocAddressXL = SC_OPCODE_ADDRESS_XL,
ocMatch = SC_OPCODE_MATCH, ocMatch = SC_OPCODE_MATCH,
ocCountEmptyCells = SC_OPCODE_COUNT_EMPTY_CELLS, ocCountEmptyCells = SC_OPCODE_COUNT_EMPTY_CELLS,
ocCountIf = SC_OPCODE_COUNT_IF, ocCountIf = SC_OPCODE_COUNT_IF,
...@@ -782,9 +780,7 @@ inline std::string OpCodeEnumToString(OpCode eCode) ...@@ -782,9 +780,7 @@ inline std::string OpCodeEnumToString(OpCode eCode)
case ocDBVar: return "DBVar"; case ocDBVar: return "DBVar";
case ocDBVarP: return "DBVarP"; case ocDBVarP: return "DBVarP";
case ocIndirect: return "Indirect"; case ocIndirect: return "Indirect";
case ocIndirectXL: return "IndirectXL";
case ocAddress: return "Address"; case ocAddress: return "Address";
case ocAddressXL: return "AddressXL";
case ocMatch: return "Match"; case ocMatch: return "Match";
case ocCountEmptyCells: return "CountEmptyCells"; case ocCountEmptyCells: return "CountEmptyCells";
case ocCountIf: return "CountIf"; case ocCountIf: return "CountIf";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment