summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/chart/modelbase.cxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-07-29 21:10:22 +0200
committerMatúš Kukan <matus.kukan@collabora.com>2014-07-29 22:58:15 +0200
commitc8cc89ff802d86b1f3a69afe1b4835b7df7f70c7 (patch)
tree49b091b9561aec824dfbcc33366919f6bef96eed /oox/source/drawingml/chart/modelbase.cxx
parent5f47e319428a703ea53ce49d166e7628aaa60789 (diff)
Fix some number format issues, bnc#862510
Set "LinkNumberFormatToSource" to false, so that format code is not ignored. Also, do not inherit format code common for all labels, if there is specific format code for a data label. Change-Id: I505311d5df641d61e616e354734bd332609fa122
Diffstat (limited to 'oox/source/drawingml/chart/modelbase.cxx')
-rw-r--r--oox/source/drawingml/chart/modelbase.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/oox/source/drawingml/chart/modelbase.cxx b/oox/source/drawingml/chart/modelbase.cxx
index d3e6961aa1b3..27cb179945eb 100644
--- a/oox/source/drawingml/chart/modelbase.cxx
+++ b/oox/source/drawingml/chart/modelbase.cxx
@@ -33,8 +33,7 @@ NumberFormat::NumberFormat() :
void NumberFormat::setAttributes( const AttributeList& rAttribs )
{
maFormatCode = rAttribs.getString( XML_formatCode, OUString() );
- // default is 'false', not 'true' as specified
- mbSourceLinked = rAttribs.getBool( XML_sourceLinked, false );
+ // TODO: if XML_sourceLinked is true, <c:formatCode> should be used instead.
}
LayoutModel::LayoutModel() :