WW8TableNodeInfo debug outputs now for DBG_UTIL only builds

This commit is contained in:
Cédric Bosdonnat 2011-11-28 12:23:18 +01:00
parent cc41d0fc67
commit b8b1b45cb4
2 changed files with 12 additions and 12 deletions

View file

@ -1559,7 +1559,7 @@ void WW8AttributeOutput::FormatDrop( const SwTxtNode& rNode, const SwFmtDrop &rS
if ( pTextNodeInfo.get() != NULL )
{
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << pTextNodeInfo->toString() << ::std::endl;
#endif
@ -1742,7 +1742,7 @@ void MSWordExportBase::GetSortedBookmarks( const SwTxtNode& rNode, xub_StrLen nA
void MSWordExportBase::OutputTextNode( const SwTxtNode& rNode )
{
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << "<OutWW8_SwTxtNode>" << ::std::endl;
#endif
@ -2044,7 +2044,7 @@ void MSWordExportBase::OutputTextNode( const SwTxtNode& rNode )
if ( pTextNodeInfo.get() != NULL )
{
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << pTextNodeInfo->toString() << ::std::endl;
#endif
@ -2346,7 +2346,7 @@ void MSWordExportBase::OutputTextNode( const SwTxtNode& rNode )
AttrOutput().EndParagraph( pTextNodeInfoInner );
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << "</OutWW8_SwTxtNode>" << ::std::endl;
#endif
}

View file

@ -3622,7 +3622,7 @@ void WW8AttributeOutput::TableNodeInfoInner( ww8::WW8TableNodeInfoInner::Pointer
SVBT16 nStyle;
ShortToSVBT16( m_rWW8Export.nStyleBeforeFly, nStyle );
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << "<OutWW8_TableNodeInfoInner>" << pNodeInfoInner->toString();
#endif
@ -3652,7 +3652,7 @@ void WW8AttributeOutput::TableNodeInfoInner( ww8::WW8TableNodeInfoInner::Pointer
if (pNodeInfoInner->isEndOfCell())
{
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << "<endOfCell/>" << ::std::endl;
#endif
m_rWW8Export.WriteCR(pNodeInfoInner);
@ -3687,7 +3687,7 @@ void WW8AttributeOutput::TableNodeInfoInner( ww8::WW8TableNodeInfoInner::Pointer
if (pNodeInfoInner->isEndOfLine())
{
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << "<endOfLine/>" << ::std::endl;
#endif
TableRowEnd(pNodeInfoInner->getDepth());
@ -3699,7 +3699,7 @@ void WW8AttributeOutput::TableNodeInfoInner( ww8::WW8TableNodeInfoInner::Pointer
m_rWW8Export.pO->clear();
}
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << "</OutWW8_TableNodeInfoInner>" << ::std::endl;
#endif
}
@ -3712,7 +3712,7 @@ void MSWordExportBase::OutputStartNode( const SwStartNode & rNode)
if (pNodeInfo.get() != NULL)
{
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << pNodeInfo->toString() << ::std::endl;
#endif
@ -3727,7 +3727,7 @@ void MSWordExportBase::OutputStartNode( const SwStartNode & rNode)
++aIt;
}
}
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << "</OutWW8_SwStartNode>" << ::std::endl;
#endif
}
@ -3744,7 +3744,7 @@ void MSWordExportBase::OutputEndNode( const SwEndNode &rNode )
if (pNodeInfo.get() != NULL)
{
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << pNodeInfo->toString() << ::std::endl;
#endif
@ -3758,7 +3758,7 @@ void MSWordExportBase::OutputEndNode( const SwEndNode &rNode )
++aIt;
}
}
#if OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
::std::clog << "</OutWW8_SwEndNode>" << ::std::endl;
#endif
}