From 60b052ccdefb44ddcd2c6d20755d9c45c67b2597 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sun, 1 Mar 2015 15:42:34 +0100 Subject: mark more places where we changed the default value in the past Change-Id: I4860fff43f106f3d734ba58f046364c201775eb7 --- oox/source/drawingml/chart/seriescontext.cxx | 6 +++--- oox/source/drawingml/chart/typegroupcontext.cxx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'oox/source/drawingml') 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; -- cgit