diff options
author | Ahmed GHANMI <aghanmi@linagora.com> | 2018-01-18 10:40:50 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-01-18 23:21:32 +0100 |
commit | 6cb011cc644d8f2e189ce5b8e5de7ff297969840 (patch) | |
tree | 4513aeb03b46778d0cdebbda96428d2e8f825b68 /sc | |
parent | d4440ce6b5964d08be1e5841ed301112b260823d (diff) |
tdf#114720: Fix subtotal crash
A condition was added in order to not make subtotal
functions if category was not checked.
Change-Id: I56f11330fa16bf0d3199576ce2545cbc8d13e864
Reviewed-on: https://gerrit.libreoffice.org/48099
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/table3.cxx | 75 |
1 files changed, 39 insertions, 36 deletions
diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx index 2bb00607eb68..2f52aee82720 100644 --- a/sc/source/core/data/table3.cxx +++ b/sc/source/core/data/table3.cxx @@ -2139,48 +2139,51 @@ bool ScTable::DoSubTotals( ScSubTotalParam& rParam ) } } - // generate global total - SCROW nGlobalStartRow = aRowVector[0].nSubStartRow; - SCROW nGlobalStartFunc = aRowVector[0].nFuncStart; - SCROW nGlobalEndRow = 0; - SCROW nGlobalEndFunc = 0; - for ( ::std::vector< RowEntry >::const_iterator iEntry( aRowVector.begin()); - iEntry != aRowVector.end(); ++iEntry) - { - nGlobalEndRow = (nGlobalEndRow < iEntry->nDestRow) ? iEntry->nDestRow : nGlobalEndRow; - nGlobalEndFunc = (nGlobalEndFunc < iEntry->nFuncEnd) ? iEntry->nFuncEnd : nGlobalEndRow; - } - - for (sal_uInt16 nLevel=0; nLevel<nLevelCount; nLevel++) + if (aRowVector.size() > 0) { - // increment end row - nGlobalEndRow++; + // generate global total + SCROW nGlobalStartRow = aRowVector[0].nSubStartRow; + SCROW nGlobalStartFunc = aRowVector[0].nFuncStart; + SCROW nGlobalEndRow = 0; + SCROW nGlobalEndFunc = 0; + for (::std::vector< RowEntry >::const_iterator iEntry(aRowVector.begin()); + iEntry != aRowVector.end(); ++iEntry) + { + nGlobalEndRow = (nGlobalEndRow < iEntry->nDestRow) ? iEntry->nDestRow : nGlobalEndRow; + nGlobalEndFunc = (nGlobalEndFunc < iEntry->nFuncEnd) ? iEntry->nFuncEnd : nGlobalEndRow; + } - // add row entry for formula - aRowEntry.nGroupNo = nLevelCount-nLevel-1; - aRowEntry.nSubStartRow = nGlobalStartRow; - aRowEntry.nFuncStart = nGlobalStartFunc; - aRowEntry.nDestRow = nGlobalEndRow; - aRowEntry.nFuncEnd = nGlobalEndFunc; + for (sal_uInt16 nLevel = 0; nLevel<nLevelCount; nLevel++) + { + // increment end row + nGlobalEndRow++; - // increment row - nGlobalEndFunc++; + // add row entry for formula + aRowEntry.nGroupNo = nLevelCount - nLevel - 1; + aRowEntry.nSubStartRow = nGlobalStartRow; + aRowEntry.nFuncStart = nGlobalStartFunc; + aRowEntry.nDestRow = nGlobalEndRow; + aRowEntry.nFuncEnd = nGlobalEndFunc; - bSpaceLeft = pDocument->InsertRow( 0, nTab, MAXCOL, nTab, aRowEntry.nDestRow, 1 ); + // increment row + nGlobalEndFunc++; - if (bSpaceLeft) - { - aRowVector.push_back( aRowEntry ); - nEndRow++; - DBShowRow(aRowEntry.nDestRow, true); + bSpaceLeft = pDocument->InsertRow(0, nTab, MAXCOL, nTab, aRowEntry.nDestRow, 1); - // insert label - ScSubTotalFunc* eResFunc = rParam.pFunctions[aRowEntry.nGroupNo]; - OUString label = ScGlobal::GetRscString( STR_TABLE_GRAND ); - label += " "; - label += ScGlobal::GetRscString(lcl_GetSubTotalStrId(eResFunc[0])); - SetString( nGroupCol[aRowEntry.nGroupNo], aRowEntry.nDestRow, nTab, label ); - ApplyStyle( nGroupCol[aRowEntry.nGroupNo], aRowEntry.nDestRow, pStyle ); + if (bSpaceLeft) + { + aRowVector.push_back(aRowEntry); + nEndRow++; + DBShowRow(aRowEntry.nDestRow, true); + + // insert label + ScSubTotalFunc* eResFunc = rParam.pFunctions[aRowEntry.nGroupNo]; + OUString label = ScGlobal::GetRscString(STR_TABLE_GRAND); + label += " "; + label += ScGlobal::GetRscString(lcl_GetSubTotalStrId(eResFunc[0])); + SetString(nGroupCol[aRowEntry.nGroupNo], aRowEntry.nDestRow, nTab, label); + ApplyStyle(nGroupCol[aRowEntry.nGroupNo], aRowEntry.nDestRow, pStyle); + } } } |