diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-06-22 15:34:04 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-06-22 15:36:17 +0300 |
commit | 476dbf469590c639f640981b32377b56fa0288d8 (patch) | |
tree | 4317dfcd99d9788d84cb06810db29b329dde84db /sc | |
parent | 2e2dd19548d868571c0174848ff1501c7e5d6d7a (diff) |
Bin a couple way too verbose SAL_INFOs
Use temporary SAL_DEBUGs in your local tree instead if/when you need
to trace these constructors and destructors.
Change-Id: Icc52c905205914f0e5b911a2dae8322e99e9234e
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/formulacell.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx index 523dcef1051d..b0c5752f3f5a 100644 --- a/sc/source/core/data/formulacell.cxx +++ b/sc/source/core/data/formulacell.cxx @@ -523,12 +523,10 @@ ScFormulaCellGroup::ScFormulaCellGroup() : mbSubTotal(false), meCalcState(sc::GroupCalcEnabled) { - SAL_INFO( "sc.core.formulacell", "ScFormulaCellGroup ctor this " << this); } ScFormulaCellGroup::~ScFormulaCellGroup() { - SAL_INFO( "sc.core.formulacell", "ScFormulaCellGroup dtor this " << this); delete mpCode; } @@ -624,7 +622,6 @@ ScFormulaCell::ScFormulaCell( ScDocument* pDoc, const ScAddress& rPos ) : mbIsExtRef(false), aPos(rPos) { - SAL_INFO( "sc.core.formulacell", "ScFormulaCell ctor this " << this); } ScFormulaCell::ScFormulaCell( ScDocument* pDoc, const ScAddress& rPos, @@ -656,8 +653,6 @@ ScFormulaCell::ScFormulaCell( ScDocument* pDoc, const ScAddress& rPos, mbIsExtRef(false), aPos(rPos) { - SAL_INFO( "sc.core.formulacell", "ScFormulaCell ctor this " << this); - Compile( rFormula, true, eGrammar ); // bNoListening, Insert does that if (!pCode) // We need to have a non-NULL token array instance at all times. @@ -692,7 +687,6 @@ ScFormulaCell::ScFormulaCell( mbIsExtRef(false), aPos(rPos) { - SAL_INFO( "sc.core.formulacell", "ScFormulaCell ctor this " << this); assert(pArray); // Never pass a NULL pointer here. // Generate RPN token array. @@ -742,8 +736,6 @@ ScFormulaCell::ScFormulaCell( mbIsExtRef(false), aPos(rPos) { - SAL_INFO( "sc.core.formulacell", "ScFormulaCell ctor this " << this); - // RPN array generation if( pCode->GetLen() && pCode->GetCodeError() == FormulaError::NONE && !pCode->GetCodeLen() ) { @@ -792,8 +784,6 @@ ScFormulaCell::ScFormulaCell( mbIsExtRef(false), aPos(rPos) { - SAL_INFO( "sc.core.formulacell", "ScFormulaCell ctor this " << this); - if (bSubTotal) pDocument->AddSubTotalCell(this); } @@ -825,8 +815,6 @@ ScFormulaCell::ScFormulaCell(const ScFormulaCell& rCell, ScDocument& rDoc, const mbIsExtRef(false), aPos(rPos) { - SAL_INFO( "sc.core.formulacell", "ScFormulaCell ctor this " << this); - pCode = rCell.pCode->Clone(); // set back any errors and recompile @@ -931,8 +919,6 @@ ScFormulaCell::ScFormulaCell(const ScFormulaCell& rCell, ScDocument& rDoc, const ScFormulaCell::~ScFormulaCell() { - SAL_INFO( "sc.core.formulacell", "ScFormulaCell dtor this " << this); - pDocument->RemoveFromFormulaTrack( this ); pDocument->RemoveFromFormulaTree( this ); pDocument->RemoveSubTotalCell(this); @@ -1332,9 +1318,6 @@ void ScFormulaCell::CompileXML( sc::CompileFormulaContext& rCxt, ScProgress& rPr pCode = pPreviousCell->pCode; if (pPreviousCell->mbIsExtRef) pDocument->GetExternalRefManager()->insertRefCellFromTemplate( pPreviousCell, this ); - - SAL_INFO( "sc.core.formulacell", "merged '" << aFormula << "' == '" << aShouldBe - << "'extend group to " << xGroup->mnLength ); } } } |