diff options
author | Eike Rathke <erack@redhat.com> | 2017-05-15 15:08:55 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-05-15 15:12:00 +0200 |
commit | 035fec9229c5b7fc42d203c1b31e26a1b187ab97 (patch) | |
tree | 25d65e7024b3bbbcc19dd877400569079fb1a054 /sc | |
parent | efdbb9791a75a5b2e5de34855bec8407e8c8f53a (diff) |
SAL_WARN_IF is more appropriate here
Change-Id: Iab1b444ba26307e2eec758dffc1374d3cd925626
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/token.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx index 260b0dd9414c..512fecc7f83f 100644 --- a/sc/source/core/tool/token.cxx +++ b/sc/source/core/tool/token.cxx @@ -380,7 +380,7 @@ bool ScRawToken::IsValidReference() const FormulaToken* ScRawToken::CreateToken() const { -#define IF_NOT_OPCODE_ERROR(o,c) SAL_INFO_IF((eOp!=o), "sc.core", #c "::ctor: OpCode " << (int)eOp << " lost, converted to " #o "; maybe inherit from FormulaToken instead!") +#define IF_NOT_OPCODE_ERROR(o,c) SAL_WARN_IF((eOp!=o), "sc.core", #c "::ctor: OpCode " << (int)eOp << " lost, converted to " #o "; maybe inherit from FormulaToken instead!") switch ( GetType() ) { case svByte : |