[Libreoffice-commits] core.git: Branch 'private/kohei/calc-sort-fix' - sc/source
Kohei Yoshida
kohei.yoshida at collabora.com
Thu Apr 17 21:37:19 PDT 2014
sc/source/core/data/table3.cxx | 3 ---
1 file changed, 3 deletions(-)
New commits:
commit a8cb708c920f7b1508e64517322c6d7168c54f82
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date: Fri Apr 18 00:37:22 2014 -0400
I don't need this anymore.
Change-Id: I03c52705979dd239ee90fde2406800c1a9c2809a
diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx
index bb6148f..169fa90 100644
--- a/sc/source/core/data/table3.cxx
+++ b/sc/source/core/data/table3.cxx
@@ -210,7 +210,6 @@ short Compare( const OUString &sInput1, const OUString &sInput2,
struct ScSortInfo
{
ScRefCellValue maCell;
- const sc::CellTextAttr* mpTextAttr;
SCCOLROW nOrg;
DECL_FIXEDMEMPOOL_NEWDEL( ScSortInfo );
};
@@ -334,7 +333,6 @@ ScSortInfoArray* ScTable::CreateSortInfoArray( SCCOLROW nInd1, SCCOLROW nInd2 )
{
ScSortInfo* pInfo = pArray->Get( nSort, nRow );
pInfo->maCell = pCol->GetCellValue(aBlockPos, nRow);
- pInfo->mpTextAttr = pCol->GetCellTextAttr(aBlockPos, nRow);
pInfo->nOrg = nRow;
}
}
@@ -368,7 +366,6 @@ ScSortInfoArray* ScTable::CreateSortInfoArray( SCCOLROW nInd1, SCCOLROW nInd2 )
{
ScSortInfo* pInfo = pArray->Get( nSort, nCol );
pInfo->maCell = GetCellValue(nCol, nRow);
- pInfo->mpTextAttr = GetCellTextAttr(nCol, nRow);
pInfo->nOrg = nCol;
}
}
More information about the Libreoffice-commits
mailing list