writerfilter: fix dbglevel=2 build

Change-Id: Icc20bb1de73c119efdb9dd80f35cdb9f2d342529
This commit is contained in:
Miklos Vajna
2013-10-14 21:30:52 +02:00
parent 29991e23bc
commit 315ef3e2ae

View File

@@ -55,11 +55,11 @@ static void lcl_printProperties( PropertyMapPtr pProps )
PropertyNameSupplier& rPropSupplier = PropertyNameSupplier::GetPropertyNameSupplier();
for( ; aMapIter != aEndIter; ++aMapIter )
{
SAL_INFO("writerfilter", rPropSupplier.GetName(aMapIter->first.eId));
SAL_INFO("writerfilter", rPropSupplier.GetName(aMapIter->first));
table::BorderLine2 aLine;
sal_Int32 nColor;
if ( aMapIter->second >>= aLine )
if ( aMapIter->second.getValue() >>= aLine )
{
dmapper_logger->startElement("borderline");
dmapper_logger->attribute("color", aLine.Color);
@@ -67,7 +67,7 @@ static void lcl_printProperties( PropertyMapPtr pProps )
dmapper_logger->attribute("outer", aLine.OuterLineWidth);
dmapper_logger->endElement();
}
else if ( aMapIter->second >>= nColor )
else if ( aMapIter->second.getValue() >>= nColor )
{
dmapper_logger->startElement("color");
dmapper_logger->attribute("number", nColor);