diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-04-12 19:19:27 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-04-12 19:19:27 +0200 |
commit | c108fbe0a31cf74a171351e297f4987f2f4a2862 (patch) | |
tree | 67f9a0af8ad968b3426f02135616a963f567b1dd | |
parent | 4f3dfaaa1070c67b9e9e938cbd4619c656914a35 (diff) |
fix crash in test
Change-Id: I0119575a33f28462d56fcc5aff7b3cf7f3493b84
-rw-r--r-- | sc/source/filter/excel/xeformula.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xeformula.cxx b/sc/source/filter/excel/xeformula.cxx index af0e6c385c99..c5ba95d88e5c 100644 --- a/sc/source/filter/excel/xeformula.cxx +++ b/sc/source/filter/excel/xeformula.cxx @@ -1809,7 +1809,7 @@ bool XclExpFmlaCompImpl::IsRef2D( const ScSingleRefData& rRefData, bool bCheck3D not count as 2D reference. */ // conditional formatting does not allow 3D refs in xls - if (this->mxData->mrCfg.meType == EXC_FMLATYPE_CONDFMT) + if (mxData && mxData->mrCfg.meType == EXC_FMLATYPE_CONDFMT) return true; if (bCheck3DFlag && rRefData.IsFlag3D()) |