[Libreoffice-commits] core.git: sc/source
Eike Rathke
erack at redhat.com
Mon May 15 13:14:36 UTC 2017
sc/source/core/tool/token.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 035fec9229c5b7fc42d203c1b31e26a1b187ab97
Author: Eike Rathke <erack at redhat.com>
Date: Mon May 15 15:08:55 2017 +0200
SAL_WARN_IF is more appropriate here
Change-Id: Iab1b444ba26307e2eec758dffc1374d3cd925626
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 :
More information about the Libreoffice-commits
mailing list