[Libreoffice-commits] core.git: chart2/source

Jochen Nitschke j.nitschke+logerrit at ok.de
Mon Jun 6 07:12:14 UTC 2016


 chart2/source/view/axes/VCartesianAxis.cxx |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 738aefb51aa034188a5342b4b04e15629038e087
Author: Jochen Nitschke <j.nitschke+logerrit at ok.de>
Date:   Mon Jun 6 02:12:08 2016 +0200

    follow up fix: initialise PointSequenceSequence directly
    
    commit e95be04a73e977022455335d7cbf56804638f761
    uses wrong ctor: Sequence( sal_Int32 len )
    
    Change-Id: I08751c10942f705ead008155a6e7e9dcfb0a2ca9
    Reviewed-on: https://gerrit.libreoffice.org/25945
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/chart2/source/view/axes/VCartesianAxis.cxx b/chart2/source/view/axes/VCartesianAxis.cxx
index a8561dc..59a4972 100644
--- a/chart2/source/view/axes/VCartesianAxis.cxx
+++ b/chart2/source/view/axes/VCartesianAxis.cxx
@@ -1849,9 +1849,10 @@ void VCartesianAxis::createShapes()
                 AxisLabelAlignment aLabelAlign = m_aAxisProperties.maLabelAlignment;
                 get2DAxisMainLine(aStart, aEnd, aLabelAlign, fExtraLineCrossesOtherAxis);
                 m_aAxisProperties.maLabelAlignment = aLabelAlign;
-                drawing::PointSequenceSequence aPoints{{
+                drawing::PointSequenceSequence aPoints{std::initializer_list<uno::Sequence<awt::Point>>
+                    {std::initializer_list<awt::Point>{
                         {static_cast<sal_Int32>(aStart.getX()), static_cast<sal_Int32>(aStart.getY())},
-                        {static_cast<sal_Int32>(aEnd.getX()), static_cast<sal_Int32>(aEnd.getY())} }};
+                        {static_cast<sal_Int32>(aEnd.getX()), static_cast<sal_Int32>(aEnd.getY())} }}};
                 Reference< drawing::XShape > xShape = m_pShapeFactory->createLine2D(
                         m_xGroupShape_Shapes, aPoints, &m_aAxisProperties.m_aLineProperties );
             }


More information about the Libreoffice-commits mailing list