[Libreoffice-commits] core.git: sc/source
Eike Rathke
erack at redhat.com
Mon Feb 20 22:08:37 UTC 2017
sc/source/ui/drawfunc/fuins2.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 3ec3d7ead0f2e47a4e24ba0d6953fea0f49815ed
Author: Eike Rathke <erack at redhat.com>
Date: Mon Feb 20 23:06:46 2017 +0100
Related: tdf#106089 generate range string with current address convention
... so subsequent parsing actually works.
Change-Id: I47d661d24552104b56827248b4c5e6a6617c5d63
diff --git a/sc/source/ui/drawfunc/fuins2.cxx b/sc/source/ui/drawfunc/fuins2.cxx
index 59c0ba0..d2d2382 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());
}
}
}
More information about the Libreoffice-commits
mailing list