diff options
-rw-r--r-- | oox/source/drawingml/chart/seriescontext.cxx | 6 | ||||
-rw-r--r-- | oox/source/drawingml/chart/typegroupcontext.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/oox/source/drawingml/chart/seriescontext.cxx b/oox/source/drawingml/chart/seriescontext.cxx index e9002f406d8d..3e71233f694d 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 72f28ed6d59c..2a53692cc69f 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; |