diff options
author | Eike Rathke <erack@redhat.com> | 2017-02-20 23:06:46 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-02-20 23:06:53 +0100 |
commit | 3ec3d7ead0f2e47a4e24ba0d6953fea0f49815ed (patch) | |
tree | e6094443a138ac4150f26ef5dc4335eb64b2de80 | |
parent | 0200677891c6d592a12343f0d6f82c569cd7a9e0 (diff) |
Related: tdf#106089 generate range string with current address convention
... so subsequent parsing actually works.
Change-Id: I47d661d24552104b56827248b4c5e6a6617c5d63
-rw-r--r-- | sc/source/ui/drawfunc/fuins2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/drawfunc/fuins2.cxx b/sc/source/ui/drawfunc/fuins2.cxx index 59c0ba07adca..d2d23823b8c9 100644 --- a/sc/source/ui/drawfunc/fuins2.cxx +++ b/sc/source/ui/drawfunc/fuins2.cxx @@ -113,7 +113,7 @@ void lcl_ChartInit( const uno::Reference < embed::XEmbeddedObject >& xObj, ScVie pDoc->LimitChartArea( nTab1, nCol1,nRow1, nCol2,nRow2 ); ScRange aRange( nCol1, nRow1, nTab1, nCol2, nRow2, nTab2 ); - aRangeString = aRange.Format(ScRefFlags::RANGE_ABS_3D, &rScDoc); + aRangeString = aRange.Format(ScRefFlags::RANGE_ABS_3D, &rScDoc, rScDoc.GetAddressConvention()); } } } |