summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/formulabase.cxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-01-12 20:22:56 +0100
committerEike Rathke <erack@redhat.com>2013-01-12 20:25:29 +0100
commitbad3ddbbb0fbef8a39cbe89db77d7c7053edf0ed (patch)
tree31de83620e4fb0093b0039bbc63b77dd0b62097b /sc/source/filter/oox/formulabase.cxx
parent0dce7abb566c87d6263108a1a81850b83098659f (diff)
OpCodeProviderImpl::initFuncOpCode: warn if there is no opcode mapping
During loading an xlsx document in an --enable-dbgutil build OpCodeProviderImpl::OpCodeProviderImpl() spits out a warning "OpCodeProviderImpl::OpCodeProviderImpl - opcodes not initialized" OpCodeProviderImpl::initFuncOpCode() now gives a clue which. Change-Id: Ia0bc53ce5a590e6904c660cd725d907efa5a731d
Diffstat (limited to 'sc/source/filter/oox/formulabase.cxx')
-rw-r--r--sc/source/filter/oox/formulabase.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/filter/oox/formulabase.cxx b/sc/source/filter/oox/formulabase.cxx
index 847beee3b556..6c2441d45b81 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -33,6 +33,7 @@
#include <com/sun/star/sheet/XFormulaParser.hpp>
#include <rtl/strbuf.hxx>
#include <rtl/ustrbuf.hxx>
+#include <sal/log.hxx>
#include "oox/core/filterbase.hxx"
#include "oox/helper/containerhelper.hxx"
#include "oox/token/properties.hxx"
@@ -1228,6 +1229,9 @@ bool OpCodeProviderImpl::initFuncOpCode( FunctionInfo& orFuncInfo, const ApiToke
{
// ignore entries for functions unknown by Calc *and* by Excel
bIsValid = orFuncInfo.maOoxFuncName.isEmpty();
+ SAL_WARN_IF( !bIsValid, "sc",
+ "OpCodeProviderImpl::initFuncOpCode - no opcode mapping for function ODF '" <<
+ orFuncInfo.maOdfFuncName << "' <-> OOXML '" << orFuncInfo.maOoxFuncName << "'");
}
}
else if( orFuncInfo.mnBiffFuncId == BIFF_FUNC_EXTERNCALL )