From 191b701ddba98089c2156b44e5304b12e965f857 Mon Sep 17 00:00:00 2001 From: Cédric Bosdonnat Date: Fri, 3 Dec 2010 14:18:22 +0100 Subject: Removed the useless WRITERFILTERSTATUS comments --- writerfilter/source/dmapper/CellColorHandler.cxx | 8 -------- 1 file changed, 8 deletions(-) (limited to 'writerfilter/source/dmapper/CellColorHandler.cxx') diff --git a/writerfilter/source/dmapper/CellColorHandler.cxx b/writerfilter/source/dmapper/CellColorHandler.cxx index c40a4d1e3601..912061650beb 100644 --- a/writerfilter/source/dmapper/CellColorHandler.cxx +++ b/writerfilter/source/dmapper/CellColorHandler.cxx @@ -65,21 +65,15 @@ void CellColorHandler::attribute(Id rName, Value & rVal) sal_Int32 nIntValue = rVal.getInt(); (void)nIntValue; (void)rName; - /* WRITERFILTERSTATUS: table: CellColor_attributedata */ switch( rName ) { case NS_rtf::LN_cellTopColor: - /* WRITERFILTERSTATUS: done: 0, planned: 0, spent: 0 */ case NS_rtf::LN_cellLeftColor: - /* WRITERFILTERSTATUS: done: 0, planned: 0, spent: 0 */ case NS_rtf::LN_cellBottomColor: - /* WRITERFILTERSTATUS: done: 0, planned: 0, spent: 0 */ case NS_rtf::LN_cellRightColor: - /* WRITERFILTERSTATUS: done: 0, planned: 0, spent: 0 */ // nIntValue contains the color, directly break; case NS_ooxml::LN_CT_Shd_val: - /* WRITERFILTERSTATUS: done: 50, planned: 0, spent: 0 */ { //might be clear, pct5...90, some hatch types //TODO: The values need symbolic names! @@ -87,13 +81,11 @@ void CellColorHandler::attribute(Id rName, Value & rVal) } break; case NS_ooxml::LN_CT_Shd_fill: - /* WRITERFILTERSTATUS: done: 1, planned: 0, spent: 0 */ if( nIntValue == OOXML_COLOR_AUTO ) nIntValue = 0xffffff; //fill color auto means white m_nFillColor = nIntValue; break; case NS_ooxml::LN_CT_Shd_color: - /* WRITERFILTERSTATUS: done: 1, planned: 0, spent: 0 */ if( nIntValue == OOXML_COLOR_AUTO ) nIntValue = 0; //shading color auto means black //color of the shading -- cgit