summaryrefslogtreecommitdiff
path: root/sc/source/filter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-13 18:20:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-03-13 18:21:36 +0100
commitd1c9e5ee53f8609092ea026639c8f28afec1d36a (patch)
tree192f7722bd0598614a08dd8e5ed13c08da44ca97 /sc/source/filter
parent8289bc767ecc88cf07da60ab6a8b850f5c2e7eb4 (diff)
tdf#43157: Fix format string violations in OSL_TRACE etc.
...for a 32-bit build, similar to what ee11e221d2108212619e1bbe7f029e7d9afdba32 "tdf#43157: Fix format string violations in OSL_TRACE etc." did for a 64-bit build Change-Id: I05dd79ede3e66cb9ab7a33792319eb34b34c82dd
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/excel/xlpivot.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xlpivot.cxx b/sc/source/filter/excel/xlpivot.cxx
index 9445c19f1380..432ff5d3f7d3 100644
--- a/sc/source/filter/excel/xlpivot.cxx
+++ b/sc/source/filter/excel/xlpivot.cxx
@@ -244,7 +244,8 @@ void XclPCNumGroupInfo::SetScDateType( sal_Int32 nScType )
case ScDPGroupBy::MONTHS: nXclType = EXC_SXNUMGROUP_TYPE_MONTH; break;
case ScDPGroupBy::QUARTERS: nXclType = EXC_SXNUMGROUP_TYPE_QUART; break;
case ScDPGroupBy::YEARS: nXclType = EXC_SXNUMGROUP_TYPE_YEAR; break;
- default: OSL_TRACE( "XclPCNumGroupInfo::SetScDateType - unexpected date type %d", nScType );
+ default:
+ SAL_INFO("sc.filter", "unexpected date type " << nScType);
}
SetXclDataType( nXclType );
}