Kaydet (Commit) ef4edac4 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

fix crash with overlapping conditional formats

Change-Id: Ib2d3b9434038b25f2dc175809e211d7651998583
üst 7f5aab85
......@@ -535,6 +535,9 @@ void ScDocument::FillInfo( ScTableInfo& rTabInfo, SCCOL nX1, SCROW nY1, SCCOL nX
itr != rCondFormats.end() && !bFound; ++itr)
{
ScConditionalFormat* pCondForm = pCondFormList->GetFormat(*itr);
if(!pCondForm)
continue;
ScCondFormatData aData = pCondForm->GetData( pInfo->pCell,
ScAddress( nX, nCurRow, nTab ) );
if (!aData.aStyleName.isEmpty())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment