diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-12-29 06:01:27 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-12-29 06:26:53 +0100 |
commit | 16bfddca6187a426523bbe187db4506a34b5511c (patch) | |
tree | 0290c86f65717eaf1e8c9241b99663ddd812b374 | |
parent | 4c9cf98819037fdb70cbe68f678f6498d5646736 (diff) |
handle relative refs correctly in xls import, fdo#80091
Change-Id: Ia70f96e1d31e71c56f03c828be0a4e49fff4b198
-rw-r--r-- | sc/source/filter/excel/excform8.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sc/source/filter/excel/excform8.cxx b/sc/source/filter/excel/excform8.cxx index f206804ee817..042d79bddc08 100644 --- a/sc/source/filter/excel/excform8.cxx +++ b/sc/source/filter/excel/excform8.cxx @@ -631,9 +631,12 @@ ConvErr ExcelToSc8::Convert( const ScTokenArray*& rpTokArray, XclImpStream& aIn, ExcRelToScRel8( nRowFirst, nColFirst, aCRD.Ref1, bRNorSF ); ExcRelToScRel8( nRowLast, nColLast, aCRD.Ref2, bRNorSF ); - if( IsComplColRange( nColFirst, nColLast ) ) + bool bColRel = aCRD.Ref1.IsColRel() || aCRD.Ref2.IsColRel(); + bool bRowRel = aCRD.Ref1.IsRowRel() || aCRD.Ref2.IsRowRel(); + + if( !bColRel && IsComplColRange( nColFirst, nColLast ) ) SetComplCol( aCRD ); - else if( IsComplRowRange( nRowFirst, nRowLast ) ) + else if( !bRowRel && IsComplRowRange( nRowFirst, nRowLast ) ) SetComplRow( aCRD ); aStack << aPool.Store( aCRD ); |