diff --git a/writerfilter/source/dmapper/DomainMapper.cxx b/writerfilter/source/dmapper/DomainMapper.cxx index 59d05155f84f..91a1aca11bf2 100644 --- a/writerfilter/source/dmapper/DomainMapper.cxx +++ b/writerfilter/source/dmapper/DomainMapper.cxx @@ -1196,7 +1196,6 @@ void DomainMapper::lcl_attribute(Id nName, Value & val) case NS_rtf::LN_blip: // contains the binary graphic case NS_ooxml::LN_shape: { - fprintf(stderr,"SHAPE3\n"); //looks a bit like a hack - and it is. The graphic import is split into the inline_inline part and //afterwards the adding of the binary data. m_pImpl->GetGraphicImport( IMPORT_AS_DETECTED_INLINE )->attribute(nName, val); @@ -1204,11 +1203,8 @@ void DomainMapper::lcl_attribute(Id nName, Value & val) } break; case NS_ooxml::LN_starmath: - { - fprintf(stderr,"STARMATH3\n"); m_pImpl->appendStarMath( val ); - break; - } + break; case NS_ooxml::LN_CT_FramePr_dropCap: case NS_ooxml::LN_CT_FramePr_lines: case NS_ooxml::LN_CT_FramePr_hAnchor: diff --git a/writerfilter/source/dmapper/GraphicImport.cxx b/writerfilter/source/dmapper/GraphicImport.cxx index 4e9446b49a44..744361dfc494 100644 --- a/writerfilter/source/dmapper/GraphicImport.cxx +++ b/writerfilter/source/dmapper/GraphicImport.cxx @@ -874,7 +874,6 @@ void GraphicImport::lcl_attribute(Id nName, Value & val) break; case NS_ooxml::LN_shape: { - fprintf(stderr,"SHAPE2\n"); uno::Reference< drawing::XShape> xShape; val.getAny( ) >>= xShape; @@ -951,9 +950,6 @@ void GraphicImport::lcl_attribute(Id nName, Value & val) } } break; - case NS_ooxml::LN_starmath: - fprintf(stderr,"STARMATH2\n"); - break; case NS_ooxml::LN_CT_Inline_distT: case NS_ooxml::LN_CT_Inline_distB: case NS_ooxml::LN_CT_Inline_distL: diff --git a/writerfilter/source/dmapper/OLEHandler.cxx b/writerfilter/source/dmapper/OLEHandler.cxx index 6e9cbbdaa0f3..907e4a760b86 100644 --- a/writerfilter/source/dmapper/OLEHandler.cxx +++ b/writerfilter/source/dmapper/OLEHandler.cxx @@ -102,7 +102,6 @@ void OLEHandler::lcl_attribute(Id rName, Value & rVal) break; case NS_ooxml::LN_shape: { - fprintf(stderr,"SHAPE1\n"); uno::Reference< drawing::XShape > xTempShape; rVal.getAny() >>= xTempShape; if( xTempShape.is() ) @@ -135,9 +134,6 @@ void OLEHandler::lcl_attribute(Id rName, Value & rVal) } } break; - case NS_ooxml::LN_starmath: - fprintf(stderr,"STARMATH1\n"); - break; default: OSL_FAIL( "unknown attribute"); } diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx index 20170ba2c15d..31aa02c8a6bb 100644 --- a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx +++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx @@ -1905,7 +1905,6 @@ OOXMLFastContextHandlerShape::OOXMLFastContextHandlerShape (RTL_CONSTASCII_USTRINGPARAM ("com.sun.star.xml.sax.FastShapeContextHandler")), xContext), uno::UNO_QUERY); - fprintf(stderr," XXX %s\n", typeid(*mrShapeContext.get()).name()); getDocument()->setShapeContext( mrShapeContext ); }