summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-31 22:50:06 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-01 14:17:04 +0100
commit4f5cee76c834c90b5718d8854195c9f883d47897 (patch)
tree81d1102537e03f786f3d62a0914c9d2d25612c01 /sc
parent9bf2ebdddaefe3951a0c516bd2ab7d0eb6cc6003 (diff)
Remove DBG_INVALIDATE
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/attarray.cxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/sc/source/core/data/attarray.cxx b/sc/source/core/data/attarray.cxx
index 5e497a7b3957..40df4cb68a21 100644
--- a/sc/source/core/data/attarray.cxx
+++ b/sc/source/core/data/attarray.cxx
@@ -29,8 +29,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sc.hxx"
-
-
//------------------------------------------------------------------------
#include "scitems.hxx"
@@ -58,17 +56,8 @@
#include "segmenttree.hxx"
#include "cell.hxx"
-#undef DBG_INVALIDATE
-#define DBGOUTPUT(s) \
- DBG_ERROR( String("Invalidate ") + String(s) + String(": ") \
- + String(nCol) + String('/') + String(aAdrStart.Row()) + String('/') + String(nTab) \
- + String(" bis ") \
- + String(nCol) + String('/') + String(aAdrEnd.Row()) + String('/') + String(nTab) \
- );
-
// STATIC DATA -----------------------------------------------------------
-
//------------------------------------------------------------------------
ScAttrArray::ScAttrArray( SCCOL nNewCol, SCTAB nNewTab, ScDocument* pDoc ) :
@@ -155,9 +144,6 @@ void ScAttrArray::Reset( const ScPatternAttr* pPattern, BOOL bAlloc )
aAdrStart.SetRow( i ? pData[i-1].nRow+1 : 0 );
aAdrEnd .SetRow( pData[i].nRow );
pDocument->InvalidateTextWidth( &aAdrStart, &aAdrEnd, bNumFormatChanged );
-#ifdef DBG_INVALIDATE
- DBGOUTPUT("Reset");
-#endif
}
// conditional format or deleted?
if ( &pPattern->GetItem(ATTR_CONDITIONAL) != &pOldPattern->GetItem(ATTR_CONDITIONAL) )
@@ -384,9 +370,6 @@ void ScAttrArray::SetPatternArea(SCROW nStartRow, SCROW nEndRow, const ScPattern
aAdrStart.SetRow( Max(nStartRow,ns) );
aAdrEnd .SetRow( Min(nEndRow,pData[nx].nRow) );
pDocument->InvalidateTextWidth( &aAdrStart, &aAdrEnd, bNumFormatChanged );
-#ifdef DBG_INVALIDATE
- DBGOUTPUT("SetPatternArea");
-#endif
}
if ( &rNewSet.Get(ATTR_CONDITIONAL) != &rOldSet.Get(ATTR_CONDITIONAL) )
{
@@ -568,9 +551,6 @@ void ScAttrArray::ApplyStyleArea( SCROW nStartRow, SCROW nEndRow, ScStyleSheet*
aAdrStart.SetRow( nPos ? pData[nPos-1].nRow+1 : 0 );
aAdrEnd .SetRow( pData[nPos].nRow );
pDocument->InvalidateTextWidth( &aAdrStart, &aAdrEnd, bNumFormatChanged );
-#ifdef DBG_INVALIDATE
- DBGOUTPUT("ApplyStyleArea");
-#endif
}
pDocument->GetPool()->Remove(*pData[nPos].pPattern);
@@ -793,9 +773,6 @@ void ScAttrArray::ApplyCacheArea( SCROW nStartRow, SCROW nEndRow, SfxItemPoolCac
aAdrStart.SetRow( nPos ? pData[nPos-1].nRow+1 : 0 );
aAdrEnd .SetRow( pData[nPos].nRow );
pDocument->InvalidateTextWidth( &aAdrStart, &aAdrEnd, bNumFormatChanged );
-#ifdef DBG_INVALIDATE
- DBGOUTPUT("ApplyCacheArea");
-#endif
}
// Reset conditional formats or delete ?