summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-05-15 15:08:55 +0200
committerEike Rathke <erack@redhat.com>2017-05-15 15:12:00 +0200
commit035fec9229c5b7fc42d203c1b31e26a1b187ab97 (patch)
tree25d65e7024b3bbbcc19dd877400569079fb1a054 /sc
parentefdbb9791a75a5b2e5de34855bec8407e8c8f53a (diff)
SAL_WARN_IF is more appropriate here
Change-Id: Iab1b444ba26307e2eec758dffc1374d3cd925626
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/tool/token.cxx2
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 :