diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-19 02:15:25 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-19 02:36:46 +0100 |
commit | 7e18e657c1ae33c35c8046676b1da195b0d3f493 (patch) | |
tree | 3a5cb3798967063f41c9198dc2bbff37ee00e678 /xmloff | |
parent | bf033461c5cb0053253f410da7f17dd2e12771c3 (diff) |
let us keep the gnumeric value handling in xmloff
Change-Id: I51c7ca53ec8b023dc06b43ec9cb1052d135d14d5
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/PropertyMap.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/chart/PropertyMap.hxx b/xmloff/source/chart/PropertyMap.hxx index 023947194930..6363fa26af2a 100644 --- a/xmloff/source/chart/PropertyMap.hxx +++ b/xmloff/source/chart/PropertyMap.hxx @@ -299,10 +299,10 @@ SvXMLEnumMapEntry aXMLChartInterpolationTypeEnumMap[] = { ::xmloff::token::XML_STEP_CENTER_Y, 6 }, // the GNM values should only be used for reading Gnumeric ods files // they should never be used for writing ods file - { ::xmloff::token::XML_GNM_STEP_START, 7 }, - { ::xmloff::token::XML_GNM_STEP_END, 8 }, - { ::xmloff::token::XML_GNM_STEP_CENTER_X, 9 }, - { ::xmloff::token::XML_GNM_STEP_CENTER_Y, 10 }, + { ::xmloff::token::XML_GNM_STEP_START, 3 }, + { ::xmloff::token::XML_GNM_STEP_END, 4 }, + { ::xmloff::token::XML_GNM_STEP_CENTER_X, 5 }, + { ::xmloff::token::XML_GNM_STEP_CENTER_Y, 6 }, { ::xmloff::token::XML_TOKEN_INVALID, 0 } }; |