[Libreoffice-commits] core.git: Branch 'feature/chart-opengl2' - chart2/source

Markus Mohrhard markus.mohrhard at collabora.co.uk
Sat Jan 11 10:09:16 PST 2014


 chart2/source/view/main/DummyXShape.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 85ba531939bd7059b1b0ac0febcb47f98590a628
Author: Markus Mohrhard <markus.mohrhard at collabora.co.uk>
Date:   Sat Jan 11 19:08:20 2014 +0100

    use correct type for LineStyle
    
    Change-Id: I537009f8182251e6d769e6bd519ae94b2471a070

diff --git a/chart2/source/view/main/DummyXShape.cxx b/chart2/source/view/main/DummyXShape.cxx
index 396cc7d..777b02b 100644
--- a/chart2/source/view/main/DummyXShape.cxx
+++ b/chart2/source/view/main/DummyXShape.cxx
@@ -512,7 +512,7 @@ void DummyLine2D::render()
     if (itr != maProperties.end())
     {
         uno::Any cow = itr->second;
-        sal_Int32 nStyle = cow.get<sal_Int32>();
+        drawing::LineStyle nStyle = cow.get<drawing::LineStyle>();
         if (drawing::LineStyle_NONE == nStyle)
         {
             pChart->m_GLRender.SetTransparency(0);


More information about the Libreoffice-commits mailing list