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

Markus Mohrhard markus.mohrhard at collabora.co.uk
Sun Mar 1 08:16:24 PST 2015


 oox/source/drawingml/chart/seriescontext.cxx    |    6 +++---
 oox/source/drawingml/chart/typegroupcontext.cxx |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 60b052ccdefb44ddcd2c6d20755d9c45c67b2597
Author: Markus Mohrhard <markus.mohrhard at collabora.co.uk>
Date:   Sun Mar 1 15:42:34 2015 +0100

    mark more places where we changed the default value in the past
    
    Change-Id: I4860fff43f106f3d734ba58f046364c201775eb7

diff --git a/oox/source/drawingml/chart/seriescontext.cxx b/oox/source/drawingml/chart/seriescontext.cxx
index e9002f4..3e71233 100644
--- a/oox/source/drawingml/chart/seriescontext.cxx
+++ b/oox/source/drawingml/chart/seriescontext.cxx
@@ -554,7 +554,7 @@ ContextHandlerRef LineSeriesContext::onCreateContext( sal_Int32 nElement, const
                 case C_TOKEN( marker ):
                     return this;
                 case C_TOKEN( smooth ):
-                    // TODO: fix for MSO 2007 behavior
+                    // TODO: OOXML_spec
                     // MSO 2007 writes false by default and not true
                     mrModel.mbSmooth = rAttribs.getBool( XML_val, true );
                     return 0;
@@ -626,7 +626,7 @@ ContextHandlerRef RadarSeriesContext::onCreateContext( sal_Int32 nElement, const
                 case C_TOKEN( marker ):
                     return this;
                 case C_TOKEN( smooth ):
-                    // TODO: fix for MSO 2007 behavior
+                    // TODO: OOXML_spec
                     // MSO 2007 writes false by default and not true
                     mrModel.mbSmooth = rAttribs.getBool( XML_val, true );
                     return 0;
@@ -663,7 +663,7 @@ ContextHandlerRef ScatterSeriesContext::onCreateContext( sal_Int32 nElement, con
                 case C_TOKEN( marker ):
                     return this;
                 case C_TOKEN( smooth ):
-                    // TODO: fix for MSO 2007 behavior
+                    // TODO: OOXML_spec
                     // MSO 2007 writes false by default and not true
                     mrModel.mbSmooth = rAttribs.getBool( XML_val, true );
                     return 0;
diff --git a/oox/source/drawingml/chart/typegroupcontext.cxx b/oox/source/drawingml/chart/typegroupcontext.cxx
index 72f28ed..2a53692 100644
--- a/oox/source/drawingml/chart/typegroupcontext.cxx
+++ b/oox/source/drawingml/chart/typegroupcontext.cxx
@@ -220,7 +220,7 @@ ContextHandlerRef LineTypeGroupContext::onCreateContext( sal_Int32 nElement, con
         case C_TOKEN( ser ):
             return new LineSeriesContext( *this, mrModel.maSeries.create() );
         case C_TOKEN( smooth ):
-            // TODO: fix for MSO 2007 behavior
+            // TODO: OOXML_spec
             // MSO 2007 writes false by default and not true
             mrModel.mbSmooth = rAttribs.getBool( XML_val, true );
             return 0;


More information about the Libreoffice-commits mailing list