summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-09-19 10:01:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-09-19 10:07:33 +0100
commit6836c341ab3534832f33a9a67c6315d448cfdbd3 (patch)
treed1ab4d50bcf965a66a0904e841fbb01d1f860724 /sc
parent7c33bb6ef9661a0684d72b4b8afeb6a1750ad407 (diff)
fix higher debugging levels
Change-Id: I3fc22524d5e890e19240554b63f2fa53f62e923f
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/tool/parclass.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/parclass.cxx b/sc/source/core/tool/parclass.cxx
index 6f3067a651d1..bb8be285024b 100644
--- a/sc/source/core/tool/parclass.cxx
+++ b/sc/source/core/tool/parclass.cxx
@@ -474,7 +474,7 @@ void ScParameterClassification::GenerateDocumentation()
for ( size_t i=0; i<nCount; ++i )
{
OpCode eOp = OpCode(i);
- if ( xMap->getSymbol(eOp).Len() )
+ if ( !xMap->getSymbol(eOp).isEmpty() )
{
fprintf( stdout, "%s: ", aEnvVarName);
OStringBuffer aStr(OUStringToOString(xMap->getSymbol(eOp), RTL_TEXTENCODING_UTF8));