summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/excform8.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-07-26 23:06:06 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-07-30 23:50:00 -0400
commit35d11d2b1e53d07833bc90242ac82f3a00587d41 (patch)
tree61a1c26bd18f56cbb948ddb4d32f8117c6f1acce /sc/source/filter/excel/excform8.cxx
parentd528b30b9f643d44cf2a24fa81ef6a7d1a80fcb9 (diff)
More of the same. Will this ever end, I'm starting to wonder...
Change-Id: I36bc90e8477cba306e107fb6d6e47f5732161df8
Diffstat (limited to 'sc/source/filter/excel/excform8.cxx')
-rw-r--r--sc/source/filter/excel/excform8.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/filter/excel/excform8.cxx b/sc/source/filter/excel/excform8.cxx
index 7a180e4b9900..7e72b044efe4 100644
--- a/sc/source/filter/excel/excform8.cxx
+++ b/sc/source/filter/excel/excform8.cxx
@@ -1053,7 +1053,7 @@ ConvErr ExcelToSc8::Convert( _ScRangeListTabs& rRangeList, XclImpStream& aIn, sa
ExcRelToScRel8( nRow, nCol, aSRD, bRangeName );
- rRangeList.Append( aSRD, nTab );
+ rRangeList.Append(aSRD.toAbs(aEingPos), nTab);
}
break;
case 0x45:
@@ -1080,7 +1080,7 @@ ConvErr ExcelToSc8::Convert( _ScRangeListTabs& rRangeList, XclImpStream& aIn, sa
else if( IsComplRowRange( nRowFirst, nRowLast ) )
SetComplRow( aCRD );
- rRangeList.Append( aCRD, nTab );
+ rRangeList.Append(aCRD.toAbs(aEingPos), nTab);
}
break;
case 0x46:
@@ -1123,7 +1123,7 @@ ConvErr ExcelToSc8::Convert( _ScRangeListTabs& rRangeList, XclImpStream& aIn, sa
ExcRelToScRel8( nRow, nCol, aSRD, bRNorSF );
- rRangeList.Append( aSRD, nTab );
+ rRangeList.Append(aSRD.toAbs(aEingPos), nTab);
}
break;
case 0x4D:
@@ -1148,7 +1148,7 @@ ConvErr ExcelToSc8::Convert( _ScRangeListTabs& rRangeList, XclImpStream& aIn, sa
else if( IsComplRowRange( nRowFirst, nRowLast ) )
SetComplRow( aCRD );
- rRangeList.Append( aCRD, nTab );
+ rRangeList.Append(aCRD.toAbs(aEingPos), nTab);
}
break;
case 0x4E:
@@ -1189,10 +1189,10 @@ ConvErr ExcelToSc8::Convert( _ScRangeListTabs& rRangeList, XclImpStream& aIn, sa
aCRD.Ref1 = aSRD;
aCRD.Ref2 = aSRD;
aCRD.Ref2.SetAbsTab(nLastScTab);
- rRangeList.Append( aCRD, nTab );
+ rRangeList.Append(aCRD.toAbs(aEingPos), nTab);
}
else
- rRangeList.Append( aSRD, nTab );
+ rRangeList.Append(aSRD.toAbs(aEingPos), nTab);
}
}
break;
@@ -1225,7 +1225,7 @@ ConvErr ExcelToSc8::Convert( _ScRangeListTabs& rRangeList, XclImpStream& aIn, sa
else if( IsComplRowRange( nRw1, nRw2 ) )
SetComplRow( aCRD );
- rRangeList.Append( aCRD, nTab );
+ rRangeList.Append(aCRD.toAbs(aEingPos), nTab);
}
}
break;