remove debug output

This commit is contained in:
Luboš Luňák
2011-11-24 16:20:56 +01:00
parent f453f11129
commit a685e8fb72
4 changed files with 1 additions and 14 deletions

View File

@@ -1196,7 +1196,6 @@ void DomainMapper::lcl_attribute(Id nName, Value & val)
case NS_rtf::LN_blip: // contains the binary graphic case NS_rtf::LN_blip: // contains the binary graphic
case NS_ooxml::LN_shape: 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 //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. //afterwards the adding of the binary data.
m_pImpl->GetGraphicImport( IMPORT_AS_DETECTED_INLINE )->attribute(nName, val); m_pImpl->GetGraphicImport( IMPORT_AS_DETECTED_INLINE )->attribute(nName, val);
@@ -1204,11 +1203,8 @@ void DomainMapper::lcl_attribute(Id nName, Value & val)
} }
break; break;
case NS_ooxml::LN_starmath: case NS_ooxml::LN_starmath:
{
fprintf(stderr,"STARMATH3\n");
m_pImpl->appendStarMath( val ); m_pImpl->appendStarMath( val );
break; break;
}
case NS_ooxml::LN_CT_FramePr_dropCap: case NS_ooxml::LN_CT_FramePr_dropCap:
case NS_ooxml::LN_CT_FramePr_lines: case NS_ooxml::LN_CT_FramePr_lines:
case NS_ooxml::LN_CT_FramePr_hAnchor: case NS_ooxml::LN_CT_FramePr_hAnchor:

View File

@@ -874,7 +874,6 @@ void GraphicImport::lcl_attribute(Id nName, Value & val)
break; break;
case NS_ooxml::LN_shape: case NS_ooxml::LN_shape:
{ {
fprintf(stderr,"SHAPE2\n");
uno::Reference< drawing::XShape> xShape; uno::Reference< drawing::XShape> xShape;
val.getAny( ) >>= xShape; val.getAny( ) >>= xShape;
@@ -951,9 +950,6 @@ void GraphicImport::lcl_attribute(Id nName, Value & val)
} }
} }
break; break;
case NS_ooxml::LN_starmath:
fprintf(stderr,"STARMATH2\n");
break;
case NS_ooxml::LN_CT_Inline_distT: case NS_ooxml::LN_CT_Inline_distT:
case NS_ooxml::LN_CT_Inline_distB: case NS_ooxml::LN_CT_Inline_distB:
case NS_ooxml::LN_CT_Inline_distL: case NS_ooxml::LN_CT_Inline_distL:

View File

@@ -102,7 +102,6 @@ void OLEHandler::lcl_attribute(Id rName, Value & rVal)
break; break;
case NS_ooxml::LN_shape: case NS_ooxml::LN_shape:
{ {
fprintf(stderr,"SHAPE1\n");
uno::Reference< drawing::XShape > xTempShape; uno::Reference< drawing::XShape > xTempShape;
rVal.getAny() >>= xTempShape; rVal.getAny() >>= xTempShape;
if( xTempShape.is() ) if( xTempShape.is() )
@@ -135,9 +134,6 @@ void OLEHandler::lcl_attribute(Id rName, Value & rVal)
} }
} }
break; break;
case NS_ooxml::LN_starmath:
fprintf(stderr,"STARMATH1\n");
break;
default: default:
OSL_FAIL( "unknown attribute"); OSL_FAIL( "unknown attribute");
} }

View File

@@ -1905,7 +1905,6 @@ OOXMLFastContextHandlerShape::OOXMLFastContextHandlerShape
(RTL_CONSTASCII_USTRINGPARAM (RTL_CONSTASCII_USTRINGPARAM
("com.sun.star.xml.sax.FastShapeContextHandler")), xContext), ("com.sun.star.xml.sax.FastShapeContextHandler")), xContext),
uno::UNO_QUERY); uno::UNO_QUERY);
fprintf(stderr," XXX %s\n", typeid(*mrShapeContext.get()).name());
getDocument()->setShapeContext( mrShapeContext ); getDocument()->setShapeContext( mrShapeContext );
} }