tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals

I disentangled my previous patch to make one patch per module. I also
modified the patch according to new directions given by Sweet5hark

Change-Id: Id690f7c1e87230e4d10e1c9fe472f35d1d1caa8b
Reviewed-on: https://gerrit.libreoffice.org/22924
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
This commit is contained in:
Rohan Kumar 2016-04-08 11:42:42 +05:30 committed by Björn Michaelsen
parent 941e891d16
commit aba0c20fb0
3 changed files with 11 additions and 13 deletions

View File

@ -45,7 +45,7 @@ public:
const TextParagraphPropertiesVector& getAggregationListStyle() const { return maAggregationListStyle; };
TextParagraphPropertiesVector& getAggregationListStyle() { return maAggregationListStyle; };
#if defined(DBG_UTIL) && OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
void dump() const;
#endif

View File

@ -91,7 +91,7 @@ void Diagram::setLayout( const DiagramLayoutPtr & pLayout)
mpLayout = pLayout;
}
#if OSL_DEBUG_LEVEL > 1
#ifdef DEBUG_OOX_DIAGRAM
OString normalizeDotName( const OUString& rStr )
{
OUStringBuffer aBuf;
@ -139,19 +139,17 @@ static sal_Int32 calcDepth( const OUString& rNodeName,
void Diagram::build( )
{
// build name-object maps
#if OSL_DEBUG_LEVEL > 1
#ifdef DEBUG_OOX_DIAGRAM
std::ofstream output("/tmp/tree.dot");
output << "digraph datatree {" << std::endl;
#endif
dgm::Points& rPoints = getData()->getPoints();
dgm::Points::iterator aCurrPoint(rPoints.begin());
dgm::Points::iterator aEndPoint(rPoints.end());
while( aCurrPoint != aEndPoint )
{
#if OSL_DEBUG_LEVEL > 1
#ifdef DEBUG_OOX_DIAGRAM
output << "\t"
<< normalizeDotName(aCurrPoint->msModelId).getStr()
<< "[";
@ -179,6 +177,7 @@ void Diagram::build( )
}
output << "];" << std::endl;
#endif
// does currpoint have any text set?
if( aCurrPoint->mpShape &&
@ -186,8 +185,8 @@ void Diagram::build( )
!aCurrPoint->mpShape->getTextBody()->getParagraphs().empty() &&
!aCurrPoint->mpShape->getTextBody()->getParagraphs().front()->getRuns().empty() )
{
#ifdef DEBUG_OOX_DIAGRAM
static sal_Int32 nCount=0;
output << "\t"
<< "textNode" << nCount
<< " ["
@ -201,8 +200,8 @@ void Diagram::build( )
<< " -> "
<< "textNode" << nCount++
<< ";" << std::endl;
}
#endif
}
const bool bInserted1=getData()->getPointNameMap().insert(
std::make_pair(aCurrPoint->msModelId,&(*aCurrPoint))).second;
@ -224,7 +223,7 @@ void Diagram::build( )
const dgm::Connections::const_iterator aEndCxn(rConnections.end());
while( aCurrCxn != aEndCxn )
{
#if OSL_DEBUG_LEVEL > 1
#ifdef DEBUG_OOX_DIAGRAM
if( !aCurrCxn->msParTransId.isEmpty() ||
!aCurrCxn->msSibTransId.isEmpty() )
{
@ -308,8 +307,7 @@ void Diagram::build( )
++aPresOfIter;
}
#if OSL_DEBUG_LEVEL > 1
#ifdef DEBUG_OOX_DIAGRAM
output << "}" << std::endl;
#endif
}

View File

@ -86,12 +86,12 @@ void TextListStyle::apply( const TextListStyle& rTextListStyle )
applyStyleList( rTextListStyle.getListStyle(), getListStyle() );
}
#if defined(DBG_UTIL) && OSL_DEBUG_LEVEL > 1
#ifdef DBG_UTIL
void TextListStyle::dump() const
{
for ( int i = 0; i < 9; i++ )
{
OSL_TRACE("text list style level: %d", i);
SAL_INFO("oox.drawingml", "text list style level: " << i);
maListStyle[i]->dump();
}
}