[Libreoffice-commits] core.git: sc/source
Laurent Godard
lgodard.libre at laposte.net
Thu Oct 24 01:52:21 PDT 2013
sc/source/core/data/column3.cxx | 14 --------------
1 file changed, 14 deletions(-)
New commits:
commit ba88ea36d6062dcb19a499c2804dc7b973c737eb
Author: Laurent Godard <lgodard.libre at laposte.net>
Date: Thu Oct 24 10:41:45 2013 +0200
remove useless commented code
Change-Id: I8f26c75ac6d95f584e649fb7acf637394129ba44
Reviewed-on: https://gerrit.libreoffice.org/6414
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 73bcf2d..da5cdbb 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -1717,8 +1717,6 @@ void ScColumn::SetFormula( SCROW nRow, const ScTokenArray& rArray, formula::Form
pCell->SetNeedNumberFormat(true);
it = maCells.set(it, nRow, pCell);
maCellTextAttrs.set(nRow, sc::CellTextAttr());
-// ScPostIt* pPostIt;
-// maCellNotes.set(nRow, pPostIt);
CellStorageModified();
@@ -1736,8 +1734,6 @@ void ScColumn::SetFormula( SCROW nRow, const OUString& rFormula, formula::Formul
pCell->SetNeedNumberFormat(true);
it = maCells.set(it, nRow, pCell);
maCellTextAttrs.set(nRow, sc::CellTextAttr());
-// ScPostIt* pPostIt;
-// maCellNotes.set(nRow, pPostIt);
CellStorageModified();
@@ -1752,8 +1748,6 @@ ScFormulaCell* ScColumn::SetFormulaCell( SCROW nRow, ScFormulaCell* pCell )
pCell->SetNeedNumberFormat(true);
it = maCells.set(it, nRow, pCell);
maCellTextAttrs.set(nRow, sc::CellTextAttr());
-// ScPostIt* pPostIt;
-// maCellNotes.set(nRow, pPostIt);
CellStorageModified();
@@ -1785,8 +1779,6 @@ bool ScColumn::SetGroupFormulaCell( SCROW nRow, ScFormulaCell* pCell )
pCell->SetNeedNumberFormat(true);
it = maCells.set(it, nRow, pCell);
maCellTextAttrs.set(nRow, sc::CellTextAttr());
-// ScPostIt* pPostIt;
-// maCellNotes.set(nRow, pPostIt);
CellStorageModified();
@@ -2206,8 +2198,6 @@ void ScColumn::SetError( SCROW nRow, const sal_uInt16 nError)
sc::CellStoreType::iterator it = GetPositionToInsert(nRow);
it = maCells.set(it, nRow, pCell);
maCellTextAttrs.set(nRow, sc::CellTextAttr());
-// ScPostIt* pPostIt;
-// maCellNotes.set(nRow, pPostIt);
CellStorageModified();
@@ -2234,8 +2224,6 @@ void ScColumn::SetRawString( SCROW nRow, const svl::SharedString& rStr, bool bBr
sc::CellStoreType::iterator it = GetPositionToInsert(nRow);
maCells.set(it, nRow, rStr);
maCellTextAttrs.set(nRow, sc::CellTextAttr());
-// ScPostIt* pPostIt;
-// maCellNotes.set(nRow, pPostIt);
CellStorageModified();
@@ -2278,8 +2266,6 @@ void ScColumn::SetValue( SCROW nRow, double fVal )
sc::CellStoreType::iterator it = GetPositionToInsert(nRow);
maCells.set(it, nRow, fVal);
maCellTextAttrs.set(nRow, sc::CellTextAttr());
-// ScPostIt* pPostIt;
-// maCellNotes.set(nRow, pPostIt);
CellStorageModified();
More information about the Libreoffice-commits
mailing list