summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2015-03-01 15:42:34 +0100
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2015-03-01 17:12:35 +0100
commit60b052ccdefb44ddcd2c6d20755d9c45c67b2597 (patch)
tree2ed9c8b8f49e09b207614c46211739c101616827
parent6c84442f99de109b585d3ba8964deb8dcf261c0f (diff)
mark more places where we changed the default value in the past
Change-Id: I4860fff43f106f3d734ba58f046364c201775eb7
-rw-r--r--oox/source/drawingml/chart/seriescontext.cxx6
-rw-r--r--oox/source/drawingml/chart/typegroupcontext.cxx2
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;